forked from maidsafe/qp2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (51 loc) · 1.35 KB
/
Cargo.toml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "qp2p"
description = "Peer-to-peer networking library using QUIC"
documentation = "https://docs.rs/qp2p"
homepage = "https://maidsafe.net"
license = "MIT OR BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/maidsafe/qp2p"
version = "0.9.23"
authors = [ "MaidSafe Developers <[email protected]>" ]
keywords = [ "quic" ]
edition = "2018"
[dependencies]
base64 = "~0.12.2"
bincode = "1.2.1"
futures = "~0.3.8"
log = "~0.4.8"
rcgen = "~0.8.4"
serde_json = "1.0.59"
structopt = "~0.3.15"
thiserror = "1.0.23"
webpki = "~0.21.3"
[dependencies.bytes]
version = "1.0.1"
features = [ "serde" ]
[dependencies.igd]
version = "~0.11.1"
features = [ "aio" ]
optional = true
[dependencies.quinn]
version = "~0.6.1"
features = [ "tls-rustls" ]
default-features = false
[dependencies.rustls]
version = "~0.17.0"
features = [ "dangerous_configuration" ]
[dependencies.serde]
version = "1.0.117"
features = [ "derive" ]
[dependencies.tokio]
version = "~0.2.24"
features = [ "rt-threaded", "sync", "time", "macros", "io-std", "io-util" ]
[dev-dependencies]
flexi_logger = "~0.16.1"
anyhow = "1.0.36"
rand = "~0.7.3"
[target."cfg(any(all(unix, not(any(target_os = \"android\", target_os = \"androideabi\", target_os = \"ios\"))), windows))".dependencies]
dirs-next = "2.0.0"
[features]
default = [ "igd" ]
no-igd = [ ]