| | [package] |
| | name = "libp2p-mplex" |
| | edition = "2021" |
| | rust-version = { workspace = true } |
| | description = "Mplex multiplexing 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] |
| | bytes = "1" |
| | futures = { workspace = true } |
| | asynchronous-codec = { workspace = true } |
| | libp2p-core = { workspace = true } |
| | libp2p-identity = { workspace = true } |
| | nohash-hasher = "0.2" |
| | parking_lot = "0.12" |
| | rand = "0.8" |
| | smallvec = "1.13.2" |
| | tracing = { workspace = true } |
| | unsigned-varint = { workspace = true, features = ["asynchronous_codec"] } |
| |
|
| | [dev-dependencies] |
| | async-std = { version = "1.7.0", features = ["attributes"] } |
| | criterion = "0.5" |
| | futures = { workspace = true } |
| | libp2p-identity = { workspace = true, features = ["rand"] } |
| | libp2p-muxer-test-harness = { path = "../test-harness" } |
| | libp2p-plaintext = { workspace = true } |
| | libp2p-tcp = { workspace = true, features = ["async-io"] } |
| | quickcheck = { workspace = true } |
| | tracing-subscriber = { workspace = true, features = ["env-filter"] } |
| |
|
| | [[bench]] |
| | name = "split_send_size" |
| | harness = false |
| |
|
| | |
| | |
| | [package.metadata.docs.rs] |
| | all-features = true |
| |
|
| | [lints] |
| | workspace = true |
| |
|