-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 1.1 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
[package]
name = "cess-rust-sdk"
version = "0.7.8"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.83"
base58 = "0.2.0"
blake2 = "0.10.6"
bs58 = "0.5.1"
dotenv = "0.15.0"
futures = "0.3.30"
futures-util = "0.3.31"
hex = "0.4.3"
libp2p = { version = "0.53.2", features = ["dns"] }
libp2p-core = "0.41.3"
log = "0.4.22"
once_cell = "1.19.0"
rand = "0.8.5"
reed-solomon-erasure = "6.0.0"
regex = "1.10.5"
reqwest = {version = "0.12.5", features = ["multipart", "json", "stream"]}
serde = { version = "1.0.203", features = ["derive"] }
# Important! sp-keyring version should depend on same version of sp-core exported from subxt
sp-keyring = "34.0.0"
subxt = { git = "https://github.com/paritytech/subxt", tag="v0.38.0", features=["substrate-compat", "reconnecting-rpc-client"]}
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["full"] }
tokio-util = {version = "0.7.12", features = ["io", "io-util"] }
trust-dns-resolver = "0.23.2"
uuid = { version = "1.10.0", features = ["v4", "fast-rng", "macro-diagnostics"] }