-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.36 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (56 loc) · 1.36 KB
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
[package]
name = "sn_api"
version = "0.26.0"
description = "Safe API"
authors = ["bochaco <gabrielviganotti@gmail.com>", "Josh Wilson <joshuef@gmail.com>"]
license = "MIT OR BSD-3-Clause"
repository = "https://github.com/maidsafe/sn_api"
include = ["Cargo.toml", "src/*"]
edition = "2018"
[dependencies]
async-trait = "~0.1"
bincode = "1.3.1"
chrono = "~0.4"
dirs-next = "2.0.0"
ed25519-dalek = { version = "1.0.1", features = [ "serde" ]}
env_logger = "~0.8"
futures = "~0.3"
hex = "~0.4"
hmac = "~0.10"
lazy_static = "1.4.0"
log = "~0.4"
mime_guess = "2.0.3"
multibase = "~0.9"
pbkdf2 = { version = "~0.7", default-features = false }
qjsonrpc = "~0.2"
rand = "~0.7"
rand_core = "~0.5"
relative-path = "1.3.2"
rmp-serde = "~0.15"
serde = "1.0.123"
serde_json = "1.0.62"
sha3 = "~0.9"
sn_client = "~0.56"
sn_data_types = "~0.18"
sn_url = "1.1"
thiserror = "1.0.23"
tokio = { version = "1.3.0", features = ["rt"] }
uhttp_uri = "~0.5"
url = "2.2.0"
urlencoding = "1.1.1"
walkdir = "2.3.1"
xor_name = "1"
[dependencies.tiny-keccak]
version = "2.0.2"
features = [ "sha3" ]
[features]
authenticator = []
authd_client = []
app = []
simulated-payouts = ["sn_client/simulated-payouts"]
default = ["simulated-payouts", "authenticator", "authd_client", "app"]
[dev-dependencies]
anyhow = "1.0.38"
proptest = "~0.10"
tokio = { version = "1.3.0", features = ["macros"] }
tracing-subscriber = "~0.2"