RustRepoTrans
/
Dataset_Construction
/projects
/libp2p
/rust
/examples
/distributed-key-value-store
/Cargo.toml
| [package] | |
| name = "distributed-key-value-store-example" | |
| version = "0.1.0" | |
| edition = "2021" | |
| publish = false | |
| license = "MIT" | |
| [package.metadata.release] | |
| release = false | |
| [dependencies] | |
| async-std = { version = "1.12", features = ["attributes"] } | |
| async-trait = "0.1" | |
| futures = { workspace = true } | |
| libp2p = { path = "../../libp2p", features = [ "async-std", "dns", "kad", "mdns", "noise", "macros", "tcp", "yamux"] } | |
| tracing = { workspace = true } | |
| tracing-subscriber = { workspace = true, features = ["env-filter"] } | |
| [lints] | |
| workspace = true | |