forked from Alzymologist/substrate-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 1.69 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
[package]
description = "parser for Substrate chain data"
license = "GPL-3.0-or-later"
name = "substrate_parser"
version = "0.6.1"
authors = ["Alexander Slesarev <[email protected]>", "Vera Abramova <[email protected]>"]
edition = "2021"
repository = "https://github.com/Alzymologist/substrate-parser"
homepage = "https://github.com/Alzymologist/substrate-parser"
documentation = "https://docs.rs/substrate_parser/"
keywords = ["parser", "substrate"]
exclude = ["/for_tests", "/.github"]
[dependencies]
bitvec = {version = "1.0.1", default-features = false, features = ["alloc"]}
external-memory-tools = {version = "0.1.1", default-features = false}
frame-metadata = {version = "17.0.0", default-features = false, features = ["current", "decode"]}
hex = {version = "0.4.3", default-features = false, features = ["alloc"]}
num-bigint = {version = "0.4.6", default-features = false}
plot_icon = {version = "0.3.0", optional = true, default-features = false, features = ["pix"]}
parity-scale-codec = {version = "3.6.12", default-features = false, features = ["derive", "bit-vec"]}
primitive-types = {version = "0.13.1", default-features = false}
scale-info = {version = "2.11.5", default-features = false}
sp-arithmetic = {version = "26.0.0", default-features = false}
sp-crypto-hashing = {version = "0.1.0", default-features = false}
substrate-crypto-light = {git = "https://github.com/Alzymologist/substrate-crypto-light", default-features = false, features = ["ecdsa", "ed25519", "sr25519"]}
[features]
default = ["std"]
std = ["external-memory-tools/std", "frame-metadata/std", "plot_icon", "primitive-types/std", "sp-crypto-hashing/std", "substrate-crypto-light/std"]
[lib]
name = "substrate_parser"
crate-type = ["lib"]