forked from benjaminbollen/maidsafe_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (68 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
authors = [ "MaidSafe Developers <[email protected]>" ]
description = "Safe Network Client"
documentation = "https://docs.rs/sn_client"
edition = "2018"
homepage = "https://maidsafe.net"
license = "GPL-3.0"
name = "sn_client"
readme = "README.md"
repository = "https://github.com/maidsafe/sn_client"
version = "0.61.1"
keywords = [ "Safe", "Network", "SafeNetwork" ]
[package.metadata.docs.rs]
features = [ "simulated-payouts" ]
[dependencies]
anyhow = "1.0.38"
async-trait = "~0.1.42"
bincode = "1.3.1"
crdts = "6.3.3"
dirs-next = "2.0.0"
env_logger = "~0.8.3"
futures = "~0.3.13"
futures-util = "~0.3.13"
itertools = "~0.10.0"
log = "~0.4.14"
rand = "~0.7.3"
regex = "1.4.3"
rmp-serde = "~0.15.4"
self_encryption = "~0.24.1"
serde_json = "1.0.62"
sn_data_types = "~0.18.3"
sn_messaging = "37.0.0"
sn_transfers = "~0.7.3"
sn_url = "1.1.2"
thiserror = "1.0.23"
threshold_crypto = "0.4.0"
url = "2.2.0"
xor_name = "1.2.0"
[dependencies.bytes]
version = "1.0.1"
features = [ "serde" ]
[dependencies.chrono]
version = "~0.4.19"
features = [ "serde" ]
[dependencies.miscreant]
version = "~0.5.2"
[dependencies.qp2p]
version = "0.12.0"
features = [ "no-igd" ]
[dependencies.serde]
version = "1.0.123"
features = [ "derive", "rc" ]
[dependencies.tiny-keccak]
version = "2.0.2"
features = [ "sha3" ]
[dependencies.tokio]
version = "~1.6.0"
features = [ "rt", "rt-multi-thread", "sync" ]
[dev-dependencies]
serde_json = "1.0.62"
tracing-subscriber = "~0.2.15"
[features]
default = [ "simulated-payouts" ]
simulated-payouts = [
"sn_data_types/simulated-payouts",
"sn_transfers/simulated-payouts",
"sn_messaging/simulated-payouts"
]