mirror of https://github.com/dapr/rust-sdk.git
chore: remove macro dep from main crate
Signed-off-by: Mike Nguyen <hey@mike.ee>
This commit is contained in:
parent
fcff470451
commit
95b009baaf
|
@ -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"
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue