-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
59 lines (54 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = [
"bin/tx-decoder",
"bin/archive-demo",
"bin/v14-test",
"desub",
"desub-current",
"desub-legacy",
"desub-json-resolver",
"desub-common",
"integration-tests",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/paritytech/desub"
homepage = "https://github.com/paritytech/desub"
description = "Decode Substrate with Backwards-Compatible Metadata"
rust-version = "1.70.0"
edition = "2021"
[workspace.dependencies]
anyhow = "1"
parity-scale-codec = "3.6.5"
scale-info = "2.10.0"
scale-value = "0.12.0"
scale-decode = "0.9"
frame-metadata = "16"
bitvec = "1"
serde = "1"
serde_json = "1"
derive_more = "0.99"
thiserror = "1"
hex = "0.4"
log = "0.4"
pretty_env_logger = "0.4"
paste = "1.0.3"
dyn-clone = "1.0"
onig = { version = "6", default-features = false }
phf = "0.11"
syn = "2"
clap = "4.4.7"
sp-core = "24.0.0"
sp-runtime = "27.0.0"
sp-version = "25.0.0"
sp-keyring = "27.0.0"
pallet-balances = "24.0.0"
frame-system = "24.0.0"
desub = { version = "0.1.0", default-features = false, path = "./desub" }
desub-common = { version = "0.1.0", default-features = false, path = "./desub-common" }
desub-current = { version = "0.1.0", default-features = false, path = "./desub-current" }
desub-json-resolver = { version = "0.1.0", default-features = false, path = "./desub-json-resolver" }
desub-legacy = { version = "0.1.0", default-features = false, path = "./desub-legacy" }