Skip to content

Commit

Permalink
Re-export async_trait and futures from paladin-core
Browse files Browse the repository at this point in the history
  • Loading branch information
cpubot committed Oct 29, 2023
1 parent 3963c0d commit 38bd7d2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions examples/hello-world-rabbitmq/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions examples/hello-world-rabbitmq/ops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ edition = "2021"
[dependencies]
serde = "1.0.183"
anyhow = "1.0.75"
futures = "0.3.28"
async-trait = "0.1.73"

paladin-core = { path = "../../../paladin-core" }
4 changes: 2 additions & 2 deletions paladin-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "paladin-core"
version = "0.1.2"
version = "0.1.3"
description = "A Rust distributed algorithm toolkit. Write distributed algorithms without the complexities of distributed systems programming."
license.workspace = true
edition.workspace = true
Expand Down Expand Up @@ -29,7 +29,7 @@ futures = "0.3.28"
uuid = { version = "1.4.1", features = ["v4", "fast-rng"] }
clap = { version = "4.4.2", features = ["derive", "env"] }
pin-project = "1.1.3"
paladin-opkind-derive = "0.1.0"
paladin-opkind-derive = "0.1.1"

[dev-dependencies]
# Required for certain doc tests which showcase generic numeric operations
Expand Down
2 changes: 2 additions & 0 deletions paladin-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,5 @@ pub mod task;
pub mod opkind_derive {
pub use paladin_opkind_derive::*;
}
pub use async_trait::async_trait;
pub use futures;

0 comments on commit 38bd7d2

Please sign in to comment.