File size: 903 Bytes
f0f4f2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "libp2p-upnp"
edition = "2021"
rust-version = "1.60.0"
description = "UPnP support for libp2p transports"
version = "0.3.0"
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
publish = true

[dependencies]
futures = { workspace = true }
futures-timer = "3.0.3"
igd-next = "0.14.3"
libp2p-core = { workspace = true }
libp2p-swarm = { workspace = true }
tokio = { workspace = true, default-features = false, features = ["rt"], optional = true }
tracing = { workspace = true }
void = "1.0.2"

[features]
tokio = ["igd-next/aio_tokio", "dep:tokio"]

[lints]
workspace = true

# Passing arguments to the docsrs builder in order to properly document cfg's.
# More information: https://docs.rs/about/builds#cross-compiling
[package.metadata.docs.rs]
all-features = true