-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (42 loc) · 2.01 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
[package]
name = "murmur-cli"
version = "0.1.0"
edition = "2021"
authors.workspace = true
# # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
subxt = "0.35.2"
subxt-signer = "0.35.2"
tokio = { version = "1.35", features = ["macros", "time", "rt-multi-thread"] }
murmur-core = { package = "murmur-core", path = "../core/", features = ["client"] }
etf-crypto-primitives = { git = "https://github.com/ideal-lab5/etf-sdk/", branch = "tony/dev" }
clap = { version = "4.1.1", features = ["derive"] }
rand_chacha = "0.3.1"
ckb-merkle-mountain-range = "0.5.2"
sha3 = "0.10.8"
serde_cbor = "0.11.2"
serde_json = "1.0.108"
# sp-keyring = { git = "https://github.com/ideal-lab5/polkadot-sdk.git", branch = "testing" }
# frame-support = { git = "https://github.com/ideal-lab5/polkadot-sdk.git", branch = "testing" }
# node-template-runtime = { git = "https://github.com/ideal-lab5/etf.git", branch = "tony/dev" }
codec = { package = "parity-scale-codec", version = "3.6.12", features = [
"derive",
] }
serde = { version = "1.0.188", features = ["alloc", "derive"] }
sp-core = { git = "https://github.com/ideal-lab5/polkadot-sdk.git", branch = "testing", features = ["bls-experimental"] }
# sp-runtime = { git = "https://github.com/ideal-lab5/polkadot-sdk.git", branch = "testing" }
# beefy = { package = "sp-consensus-beefy-etf", git = "https://github.com/ideal-lab5/etf.git", branch = "tony/dev", features = ["bls-experimental"] }
beefy = { package = "sp-consensus-beefy-etf", path = "../../etf/primitives/consensus/beefy-etf/", features = ["bls-experimental"] }
# sp-application-crypto = { git = "https://github.com/ideal-lab5/polkadot-sdk.git", branch = "testing", features = ["bls-experimental"] }
ark-bls12-377 = "0.4.0"
ark-std = "0.4.0"
ark-ec = "0.4.0"
ark-ff = "0.4.0"
ark-serialize = "0.4.0"
w3f-bls = "0.1.3"
getrandom = { version = "0.2", features = ["js"] }
rand_core = { version = "0.6.4", features = ["getrandom"] }
hex = "0.4.3"
array-bytes = "6.1"
ratatui = "0.28.1"
crossterm = "0.28.1"