| | [package] |
| | name = "libp2p-plaintext" |
| | edition = "2021" |
| | rust-version = { workspace = true } |
| | description = "Plaintext encryption dummy protocol for libp2p" |
| | version = "0.42.0" |
| | authors = ["Parity Technologies <admin@parity.io>"] |
| | license = "MIT" |
| | repository = "https://github.com/libp2p/rust-libp2p" |
| | keywords = ["peer-to-peer", "libp2p", "networking"] |
| | categories = ["network-programming", "asynchronous"] |
| |
|
| | [dependencies] |
| | asynchronous-codec = { workspace = true } |
| | bytes = "1" |
| | futures = { workspace = true } |
| | libp2p-core = { workspace = true } |
| | libp2p-identity = { workspace = true } |
| | quick-protobuf = "0.8" |
| | tracing = { workspace = true } |
| | quick-protobuf-codec = { workspace = true } |
| |
|
| | [dev-dependencies] |
| | libp2p-identity = { workspace = true, features = ["ed25519", "rand"] } |
| | quickcheck = { workspace = true } |
| | rand = "0.8" |
| | futures_ringbuf = "0.4.0" |
| | tracing-subscriber = { workspace = true, features = ["env-filter"] } |
| |
|
| | |
| | |
| | [package.metadata.docs.rs] |
| | all-features = true |
| |
|
| | [lints] |
| | workspace = true |
| |
|