-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (29 loc) · 1.07 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
cargo-features = ["edition2021"]
[package]
name = "chaoscope"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "AGPL-3.0"
readme = "README.md"
repository = "https://github.com/paritytech/chaoscope"
homepage = "https://www.parity.io/"
description = "RPC Instrumentation toolkit for pallet-chaos"
keywords = ["parity", "substrate", "blockchain", "chaos"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
[dependencies]
# substrate deps
subxt = { git = "https://github.com/paritytech/subxt.git", branch = "master" }
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive", "full", "bit-vec"] }
sp-keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate/", branch = "master" }
# general deps
structopt = "0.3.25"
tokio = { version = "1", features = ["full"] }
env_logger = "0.8.3"
pretty_env_logger = "0.4"
shrust = "0.0.7"
futures = "0.3.17"
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes", "tokio1"] }
[lib]
crate-type = ["rlib"]