-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
45 lines (38 loc) · 1.18 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 = "chainx-cli"
version = "2.0.0-alpha.0"
authors = ["The ChainX Authors"]
edition = "2018"
description = "Rust Command Line Interface for ChainX 2.0 based on substrate-subxt"
readme = "README.md"
license = "LICENSE"
[[bin]]
name = "chainx-cli"
path = "src/bin/cli.rs"
[[bin]]
name = "chainx-verify"
path = "src/bin/verify/mod.rs"
[dependencies]
anyhow = "1.0"
async-std = { version = "1.6.2", features = ["attributes"] }
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive", "full"] }
env_logger = "0.8.1"
hex = "0.4"
hex-literal = "0.3.1"
jsonrpsee = { version = "0.1", features = ["ws"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
subxt = { package = "substrate-subxt", git = "https://github.com/paritytech/substrate-subxt", rev = "5a0201c1303ed6b68339c9a24175c21a7e154974" }
sc-cli = { version = "0.8.1", optional = true }
frame-support = "2.0.1"
sp-authority-discovery = "2.0.1"
sp-consensus-babe = "0.8.1"
sp-core = "2.0.1"
sp-finality-grandpa = "2.0.1"
sp-keyring = "2.0.1"
sp-runtime = "2.0.1"
pallet-indices = "2.0.1"
pallet-im-online = "2.0.1"
[features]
default = ["sc-cli"]