[package] name = "fluence-fork-libp2p-core" edition = "2018" description = "Core traits and structs of libp2p" version = "0.27.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] [lib] name = "libp2p_core" [dependencies] asn1_der = "0.6.1" bs58 = "0.4.0" ed25519-dalek = "1.0.1" either = "1.5" fnv = "1.0" futures = { version = "0.3.1", features = ["executor", "thread-pool"] } futures-timer = "3" lazy_static = "1.2" libsecp256k1 = { version = "0.3.1", optional = true } log = "0.4" multiaddr = { package = "fluence-fork-parity-multiaddr", version = "0.11", path = "../misc/multiaddr" } multihash = { version = "0.13", default-features = false, features = ["std", "multihash-impl", "identity", "sha2"] } multistream-select = { version = "0.10", path = "../misc/multistream-select", package = "fluence-fork-multistream-select" } parking_lot = "0.11.0" pin-project = "1.0.0" prost = "0.7" rand = "0.7" rw-stream-sink = "0.2.0" sha2 = "0.9.1" smallvec = "1.0" thiserror = "1.0" unsigned-varint = "0.7" void = "1" zeroize = "1" serde = { version = "1.0.114", default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] ring = { version = "0.16.9", features = ["alloc", "std"], default-features = false } [dev-dependencies] async-std = { version = "1.6.2", features = ["attributes"] } criterion = "0.3" libp2p-mplex = { path = "../muxers/mplex", package = "fluence-fork-libp2p-mplex" } libp2p-noise = { path = "../transports/noise", package = "fluence-fork-libp2p-noise" } libp2p-tcp = { path = "../transports/tcp", package = "fluence-fork-libp2p-tcp" } multihash = { version = "0.13", default-features = false, features = ["arb"] } quickcheck = "0.9.0" wasm-timer = "0.2" [build-dependencies] prost-build = "0.7" [features] default = ["secp256k1"] secp256k1 = ["libsecp256k1"] [[bench]] name = "peer_id" harness = false [package.metadata.workspaces] independent = true