Skip to content

Commit

Permalink
Chore: remove workspace stuff from Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed Aug 6, 2024
1 parent 990697f commit 3c059c8
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions rt-monoio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ name = "openraft-rt-monoio"
description = "monoio AsyncRuntime support for Openraft"
documentation = "https://docs.rs/openraft-rt-monoio"
readme = "README.md"

version = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
categories = { workspace = true }
homepage = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
version = "0.10.0"
edition = "2021"
authors = [
"Databend Authors <[email protected]>",
]
categories = ["algorithms", "asynchronous", "data-structures"]
homepage = "https://github.com/datafuselabs/openraft"
keywords = ["raft", "consensus"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/datafuselabs/openraft"

[dependencies]
openraft = { path= "../openraft", version = "0.10.0", features = ["singlethreaded"] }

rand = { workspace = true }
tokio = { workspace = true, features = ["sync"] }
openraft = { path = "../openraft", version = "0.10.0", features = ["singlethreaded"] }

rand = "0.8"
tokio = { version = "1.22", features = ["sync"] }
monoio = "0.2.3"
local-sync = "0.1.1"

0 comments on commit 3c059c8

Please sign in to comment.