mirror of
https://github.com/AtHeartEngineering/rust-libp2p-dandelion.git
synced 2026-01-09 20:58:07 -05:00
Removes the `NetworkBehaviourEventProcess` and all its associated logic. See deprecation pull request https://github.com/libp2p/rust-libp2p/pull/2784. Find rational in https://github.com/libp2p/rust-libp2p/pull/2751.
25 lines
718 B
TOML
25 lines
718 B
TOML
[package]
|
|
name = "libp2p-swarm-derive"
|
|
edition = "2021"
|
|
rust-version = "1.56.1"
|
|
description = "Procedural macros of libp2p-core"
|
|
version = "0.30.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"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.4"
|
|
quote = "1.0"
|
|
syn = { version = "1.0.8", default-features = false, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
|
|
|
|
[dev-dependencies]
|
|
libp2p = { path = "../", default-features = false, features = ["ping", "identify", "kad"] }
|
|
either = "1.6.0"
|
|
futures = "0.3.1"
|