-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (28 loc) · 1.36 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
[package]
name = "get_queue"
version = "0.1.0"
edition = "2018"
[dependencies]
futures = "0.3.21"
sc-network = { git = "https://github.com/paritytech/substrate.git" }
sp-runtime = { git = "https://github.com/paritytech/substrate.git" }
substrate-test-runtime-client = { git = "https://github.com/paritytech/substrate.git" }
sc-utils = { git = "https://github.com/paritytech/substrate.git" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate.git" }
sc-consensus = { git = "https://github.com/paritytech/substrate.git" }
sp-consensus = { git = "https://github.com/paritytech/substrate.git" }
sp-blockchain = { git = "https://github.com/paritytech/substrate.git" }
async-std = "1.11.0"
rand = "0.8.5"
async-trait = "0.1.46"
futures-timer = "3.0.1"
finality-grandpa = "0.13.0"
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate.git" }
#sc-network-test = { git = "https://github.com/paritytech/substrate.git" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git" }
sp-core = { git = "https://github.com/paritytech/substrate.git" }
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
libp2p = "0.40.0"
log = "0.4.12"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate.git" }
sc-peerset = { git = "https://github.com/paritytech/substrate.git" }