chore: remove macro dep from main crate

Signed-off-by: Mike Nguyen <hey@mike.ee>
This commit is contained in:
Mike Nguyen 2024-11-25 16:20:17 +00:00
parent fcff470451
commit 95b009baaf
No known key found for this signature in database
GPG Key ID: ACED13988580D50E
3 changed files with 0 additions and 7 deletions

View File

@ -12,9 +12,6 @@ resolver = "2"
[workspace.dependencies]
async-trait = "0.1"
dapr-macros = { path = "./dapr-macros" }
prost = "0.13.1"
prost-build = "0.13.1"
prost-types = "0.13.1"

View File

@ -15,7 +15,6 @@ async-trait = { workspace = true }
axum = "0.7"
bytes = "1.7"
chrono = "0.4"
dapr-macros = { workspace = true }
futures = "0.3"
log = "0.4"
prost = { workspace = true }

View File

@ -1,12 +1,9 @@
#![doc = include_str!("../README.md")]
extern crate dapr_macros;
pub use serde;
pub use serde_json;
pub use client::Client;
pub use dapr_macros::actor;
/// Module containing the Dapr Callback SDK.
pub mod appcallback;