mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-16 04:41:20 +00:00
Using workspace inheritance breaks `cargo release` because it cannot resolve that the dev-dependencies should only use a `path` and not a version. Pull-Request: #4097. Co-Authored-By: Thomas Eizinger <thomas@eizinger.io>
22 lines
701 B
TOML
22 lines
701 B
TOML
[package]
|
|
name = "libp2p-allow-block-list"
|
|
edition = "2021"
|
|
rust-version = { workspace = true }
|
|
description = "Allow/block list connection management for libp2p."
|
|
version = "0.2.0"
|
|
license = "MIT"
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
keywords = ["peer-to-peer", "libp2p", "networking"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
[dependencies]
|
|
libp2p-core = { workspace = true }
|
|
libp2p-swarm = { workspace = true }
|
|
libp2p-identity = { workspace = true, features = ["peerid"] }
|
|
void = "1"
|
|
|
|
[dev-dependencies]
|
|
async-std = { version = "1.12.0", features = ["attributes"] }
|
|
libp2p-swarm-derive = { path = "../../swarm-derive" }
|
|
libp2p-swarm-test = { path = "../../swarm-test" }
|