-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (42 loc) · 2.33 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
[package]
name = "polkadot-cli"
author = "[email protected]"
readme = "README.md"
repository = "https://github.com/boundless-forest/polkadot-cli"
description = "Substrate based chain command helper."
edition = "2021"
license = "MIT OR Apache-2.0"
version = "0.0.1"
[dependencies]
# crate.io
jsonrpsee = { version = "0.16.2", features = ["http-client", "async-client", "client-ws-transport"] }
tokio = { version = "1.29.0", features = ["rt", "macros", "rt-multi-thread"] }
rustyline = { version = "12.0.0", features = ["with-fuzzy"] }
clap = { version = "4.3.8", features = ["derive", "string"] }
dirs = { version = "5.0.1" }
colored = { version = "2.0.0" }
figlet-rs = { version = "0.1.5" }
shell-words = { version = "1.1.0" }
async-trait = { version = "0.1.69" }
serde_json = { version = "1.0.100" }
serde = { version = "1.0.166" }
frame-metadata = { version = "16.0.0", features = ["decode", "serde_full"] }
thiserror = { version = "1.0.44" }
env_logger = { version = "0.10.0" }
log = { version = "0.4.19"}
scale-info = { version = "2.9.0" }
subxt-metadata = { version = "0.32.1" }
scale-value = { version = "0.12.0" }
comfy-table = { version = "7.0.1" }
ratatui = { version = "0.24.0", features = ["all-widgets"] }
crossterm = { version = "0.27.0" }
array-bytes = { version = "6.1.0" }
open = { version = "5.0.0" }
# polkadot
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" }
fp-account = { git = "https://github.com/paritytech/frontier", branch = "polkadot-v1.1.0" }