-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
112 lines (105 loc) · 5.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[workspace]
resolver = "2"
members = [
"node",
]
[profile.release]
panic = "unwind"
[workspace.dependencies]
assert_cmd = "2.0"
clap = { version = "4.5.3", features = ["derive"] }
color-print = "0.3.4"
docify = { version = "0.2.8" }
parity-scale-codec = { version = "3.6", default-features = false, features = ["derive"] }
futures = { version = "0.3.28", features = ["compat"] }
jsonrpsee = { version = "0.24.7", features = ["server"] }
log = { version = "0.4.21", default-features = false }
nix = "0.24"
serde = { version = "1.0.209", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.127", features = ["arbitrary_precision"] }
tempfile = "3.8.1"
# encointer deps
encointer-balances-tx-payment = { default-features = false, version = "~14.1.0" }
encointer-balances-tx-payment-rpc-runtime-api = { default-features = false, version = "~14.1.0" }
pallet-encointer-bazaar = { default-features = false, version = "~14.1.0" }
pallet-encointer-bazaar-rpc-runtime-api = { default-features = false, version = "~14.1.0" }
pallet-encointer-ceremonies = { default-features = false, version = "~14.1.0" }
pallet-encointer-ceremonies-rpc-runtime-api = { default-features = false, version = "~14.1.0" }
pallet-encointer-communities = { default-features = false, version = "~14.1.0" }
pallet-encointer-communities-rpc-runtime-api = { default-features = false, version = "~14.1.0" }
# rpc [std]
pallet-encointer-bazaar-rpc = "~14.1.0"
pallet-encointer-ceremonies-rpc = "~14.1.0"
pallet-encointer-communities-rpc = "~14.1.0"
encointer-balances-tx-payment-rpc = "~14.1.0"
# fellowship runtimes. do not depend on fellow-runtimes directly, so we can upgrade at our own pace
parachain-runtime = { package = "encointer-kusama-runtime", git = "https://github.com/encointer/runtimes.git", branch = "polkadot-stable2409" }
# polkadot-sdk [no_std]
cumulus-primitives-core = { version = "0.16.0", default-features = false }
frame-benchmarking = { version = "38.0.0", default-features = false }
pallet-transaction-payment = { version = "38.0.2", default-features = false }
parachains-common = { version = "18.0.0", default-features = false }
sp-api = { version = "34.0.0", default-features = false }
sp-block-builder = { version = "34.0.0", default-features = false }
sp-consensus-aura = { version = "0.40.0", default-features = false }
sp-core = { version = "34.0.0", default-features = false }
sp-runtime = { version = "39.0.5", default-features = false }
xcm = { version = "14.2.0", package = "staging-xcm", default-features = false }
# std stuff
cumulus-client-cli = "0.18.0"
cumulus-client-collator = "0.18.0"
cumulus-client-consensus-aura = "0.18.0"
cumulus-client-consensus-common = "0.18.0"
cumulus-client-consensus-proposer = "0.16.0"
cumulus-client-service = "0.19.0"
cumulus-relay-chain-interface = "0.18.0"
frame-benchmarking-cli = "43.0.0"
pallet-transaction-payment-rpc = "41.0.0"
polkadot-cli = "19.0.0"
polkadot-service = "19.0.0"
sc-basic-authorship = "0.45.0"
sc-chain-spec = "38.0.0"
sc-cli = "0.47.0"
sc-client-api = "37.0.0"
sc-consensus = "0.44.0"
sc-executor = "0.40.1"
sc-network = "0.45.3"
sc-offchain = "40.0.0"
sc-service = "0.46.0"
sc-sysinfo = "38.0.0"
sc-telemetry = "25.0.0"
sc-tracing = "37.0.1"
sc-transaction-pool = "37.0.0"
sc-transaction-pool-api = "37.0.0"
sp-blockchain = "37.0.1"
sp-consensus = "0.40.0"
sp-keyring = "39.0.0"
sp-keystore = "0.40.0"
sp-timestamp = "34.0.0"
substrate-build-script-utils = "11.0.0"
substrate-frame-rpc-system = "39.0.0"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.17.0" }
# ### only while debugging/developping
# [patch."https://github.com/encointer/runtimes"]
# kusama-runtime-constants = { path = "../runtimes/relay/kusama/constants" }
# parachain-runtime = { package = "encointer-kusama-runtime", path = "../runtimes/system-parachains/encointer" }
#
#[patch.crates-io]
#encointer-balances-tx-payment = { path = "../pallets/balances-tx-payment" }
#encointer-balances-tx-payment-rpc = { path = "../pallets/balances-tx-payment/rpc" }
#encointer-balances-tx-payment-rpc-runtime-api = { path = "../pallets/balances-tx-payment/rpc/runtime-api" }
#encointer-ceremonies-assignment = { path = "../pallets/ceremonies/assignment" }
#encointer-primitives = { path = "../pallets/primitives" }
#pallet-encointer-ceremonies = { path = "../pallets/ceremonies" }
#pallet-encointer-ceremonies-rpc = { path = "../pallets/ceremonies/rpc" }
#pallet-encointer-ceremonies-rpc-runtime-api = { path = "../pallets/ceremonies/rpc/runtime-api" }
#pallet-encointer-communities = { path = "../pallets/communities" }
#pallet-encointer-communities-rpc = { path = "../pallets/communities/rpc" }
#pallet-encointer-communities-rpc-runtime-api = { path = "../pallets/communities/rpc/runtime-api" }
#pallet-encointer-balances = { path = "../pallets/balances" }
#pallet-encointer-scheduler = { path = "../pallets/scheduler" }
#pallet-encointer-bazaar = { path = "../pallets/bazaar" }
#pallet-encointer-bazaar-rpc = { path = "../pallets/bazaar/rpc" }
#pallet-encointer-bazaar-rpc-runtime-api = { path = "../pallets/bazaar/rpc/runtime-api" }
#pallet-encointer-faucet = { path = "../pallets/faucet" }
#pallet-encointer-reputation-commitments = { path = "../pallets/reputation-commitments" }