2018-11-12 17:12:47 +01:00
|
|
|
[package]
|
2021-01-26 22:49:08 +01:00
|
|
|
name = "libp2p-swarm-derive"
|
2021-11-26 09:34:58 -07:00
|
|
|
edition = "2021"
|
2022-11-18 22:04:16 +11:00
|
|
|
rust-version = "1.60.0"
|
2022-11-29 17:45:58 +01:00
|
|
|
description = "Procedural macros of libp2p-swarm"
|
2023-01-12 11:21:02 +00:00
|
|
|
version = "0.32.0"
|
2018-11-12 17:12:47 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
license = "MIT"
|
2018-12-06 19:22:06 +01:00
|
|
|
repository = "https://github.com/libp2p/rust-libp2p"
|
|
|
|
keywords = ["peer-to-peer", "libp2p", "networking"]
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
2018-11-12 17:12:47 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-08 07:18:32 +02:00
|
|
|
heck = "0.4"
|
2019-11-25 10:45:04 +01:00
|
|
|
quote = "1.0"
|
2022-08-08 07:18:32 +02:00
|
|
|
syn = { version = "1.0.8", default-features = false, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
|
2018-11-12 17:12:47 +01:00
|
|
|
|
2022-11-13 10:59:14 +11:00
|
|
|
# Passing arguments to the docsrs builder in order to properly document cfg's.
|
2022-10-24 04:00:20 +02:00
|
|
|
# More information: https://docs.rs/about/builds#cross-compiling
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
rustc-args = ["--cfg", "docsrs"]
|