Files
rust-libp2p/examples/chat/Cargo.toml
Binston Sukhael Cardoza 0e9d339bd2 ci: use workspace inheritance to enforce lints in all crates
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.
2023-10-09 02:20:46 +00:00

17 lines
374 B
TOML

[package]
name = "chat-example"
version = "0.1.0"
edition = "2021"
publish = false
license = "MIT"
[dependencies]
tokio = { version = "1.32", features = ["full"] }
async-trait = "0.1"
env_logger = "0.10.0"
futures = "0.3.28"
libp2p = { path = "../../libp2p", features = [ "tokio", "gossipsub", "mdns", "noise", "macros", "tcp", "yamux", "quic"] }
[lints]
workspace = true