-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
73 lines (65 loc) · 1.56 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
[profile.release]
panic = "unwind"
opt-level = 3
debug = false
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2021"
documentation = "https://learn.onpop.io/"
license = "GPL-3.0"
repository = "https://github.com/r0gue-io/pop-cli"
version = "0.5.0"
[workspace.dependencies]
anyhow = "1.0"
assert_cmd = "2.0.14"
cargo_toml = "0.20.3"
dirs = "5.0"
duct = "0.13"
env_logger = "0.11.1"
flate2 = "1.0.30"
git2 = { version = "0.18", features = ["vendored-openssl"] }
glob = "0.3.1"
log = "0.4.20"
mockito = "1.4.0"
predicates = "3.1.0"
tar = "0.4.40"
tempfile = "3.10"
thiserror = "1.0.58"
tokio-test = "0.4.4"
# networking
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
url = "2.5"
# contracts
subxt-signer = { version = "0.37.0", features = ["subxt", "sr25519"] }
subxt = "0.37.0"
ink_env = "5.0.0"
sp-core = "31"
sp-weights = "30"
contract-build = "5.0.0-alpha"
contract-extrinsics = "5.0.0-alpha"
heck = "0.5.0"
# parachains
askama = "0.12"
regex = "1.10"
walkdir = "2.5"
indexmap = "2.2"
toml_edit = { version = "0.22", features = ["serde"] }
symlink = "0.1"
serde_json = { version = "1.0", features = ["preserve_order"] }
serde = { version = "1.0", features = ["derive"] }
zombienet-sdk = "0.2.14"
git2_credentials = "0.13.0"
# pop-cli
clap = { version = "4.5", features = ["derive"] }
cliclack = "0.3.1"
console = "0.15"
os_info = { version = "3", default-features = false }
strum = "0.26"
strum_macros = "0.26"