mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-29 02:31:20 +00:00
Starting with nightly-2023-09-10, the `[lints]` section in `Cargo.toml` files is stable. Together with workspace inheritance, this can be used to declare all lints we want to enforce in a single place. Resolves: #4484. Pull-Request: #4575.
17 lines
415 B
TOML
17 lines
415 B
TOML
[package]
|
|
name = "distributed-key-value-store-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
async-std = { version = "1.12", features = ["attributes"] }
|
|
async-trait = "0.1"
|
|
env_logger = "0.10"
|
|
futures = "0.3.28"
|
|
libp2p = { path = "../../libp2p", features = [ "async-std", "dns", "kad", "mdns", "noise", "macros", "tcp", "websocket", "yamux"] }
|
|
|
|
[lints]
|
|
workspace = true
|