Skip to content

Commit

Permalink
bump version v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
leonzchang committed Jul 10, 2023
1 parent dd16f1b commit eae25c7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
12 changes: 11 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ members = [
"basu"
]

[workspace.package]
authors = ["Leonz Chang<bellerophon00530@gmail.com>"]
version = "0.1.5"
edition = "2021"
repository = "https://github.com/leonzchang/basu.git"
documentation = "https://docs.rs/basu"
description = "Eventbus crate with sync and async features"
keywords = ["eventbus", "event", "async"]
categories = ["asynchronous"]
license = "MIT"

[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
futures = "0.3"
rayon = "1.7"
futures = { version = "0.3" }
tokio = { version = "1", default-features = false, features = ["rt", "sync", "macros"] }
thiserror = "1"
uuid = { version = "1", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }
20 changes: 10 additions & 10 deletions basu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "basu"
authors = ["Leonz Chang<bellerophon00530@gmail.com>"]
version = "0.1.4"
edition = "2021"
repository = "https://github.com/leonzchang/basu.git"
documentation = "https://docs.rs/basu"
authors = { workspace = true }
version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
description = { workspace = true }
keywords = { workspace = true }
categories = { workspace = true }
license = { workspace = true }
readme = "../README.md"
description = "Eventbus crate with sync and async features"
keywords = ["eventbus", "event", "async"]
categories = ["asynchronous"]
license = "MIT"
include = [
"src/**/*.rs",
"Cargo.toml",
Expand All @@ -21,8 +21,8 @@ doctest = false
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true, optional = true }
rayon = { workspace = true, optional = true }
futures = { workspace = true, optional = true }
rayon = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
thiserror = { workspace = true }
uuid = { workspace = true }
Expand Down

0 comments on commit eae25c7

Please sign in to comment.