-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
57 lines (54 loc) · 1.51 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
[package]
authors = ["MaidSafe Developers <[email protected]>"]
name = "sn-testnet-deploy"
description = "Tool for creating Autonomi networks"
readme = "README.md"
repository = "https://github.com/maidsafe/sn-testnet-deploy"
version = "0.1.71"
edition = "2021"
license = "BSD-3-Clause"
[[bin]]
path="src/main.rs"
name="testnet-deploy"
[dependencies]
alloy = { version = "0.5.3", default-features = false, features = ["signers"] }
async-recursion = "1.0.4"
aws-config = "0.56.0"
aws-sdk-s3 = "0.29.0"
chrono = "0.4.31"
clap = { version = "4.2.1", features = ["derive"] }
color-eyre = "0.6.2"
colored = "2.0.4"
dirs-next = "2.0.0"
dotenv = "0.15.0"
env_logger = "0.10.0"
evmlib = "~0.1.2"
flate2 = "1.0"
futures = "~0.3.13"
fs_extra = "1.2.0"
libp2p = { version = "0.54.1", features = [] }
log = "0.4"
indicatif = "0.17.3"
inquire = "0.6.2"
rand = "0.8.5"
rayon = "1.8.0"
regex = "1.9.5"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
sha2 = "0.10.7"
semver = { version = "1.0.20", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "~1.0.108"
sn_service_management = "~0.2.8"
sn-releases = "0.3.1"
thiserror = "1.0.23"
tar = "0.4"
tempfile = "3.8.0"
tokio = { version = "1.26", features = ["full"] }
tokio-stream = "0.1.14"
walkdir = "~2.5.0"
# watch out updating this, protoc compiler needs to be installed on all build systems
# arm builds + musl are very problematic
prost = { version = "0.9" }
tonic = { version = "0.6.2" }
[dev-dependencies]
httpmock = "0.6"