-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCargo.toml
162 lines (153 loc) · 7.75 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[package]
authors = ["KILT <info@kilt.io>"]
edition = "2021"
name = "mashnet-node-runtime"
version = "1.4.0"
[build-dependencies]
substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13"}
[dependencies]
bitflags = {default-features = false, version = "1.3.2"}
codec = {default-features = false, features = ["derive"], package = "parity-scale-codec", version = "2.3.1"}
log = "0.4"
scale-info = {version = "1.0", default-features = false, features = ["derive"]}
hex-literal = {version = "0.3.4", optional = true}
serde = {features = ["derive"], optional = true, version = "1.0"}
# kilt functionality
attestation = {default-features = false, path = "../../pallets/attestation"}
crowdloan = {default-features = false, path = "../../pallets/crowdloan"}
ctype = {default-features = false, path = "../../pallets/ctype"}
delegation = {default-features = false, path = "../../pallets/delegation"}
did = {default-features = false, path = "../../pallets/did"}
kilt-launch = {default-features = false, path = "../../pallets/kilt-launch"}
kilt-support = {path = "../../support", default-features = false, optional = true}
pallet-did-lookup = {default-features = false, path = "../../pallets/pallet-did-lookup"}
runtime-common = {path = "../../runtimes/common", default-features = false}
# kilt specific
# Benchmarking
frame-system-benchmarking = {git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.13"}
# Substrate
frame-benchmarking = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-executive = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-support = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-system = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
frame-system-rpc-runtime-api = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-aura = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-authorship = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-balances = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-grandpa = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-indices = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-randomness-collective-flip = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-session = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-sudo = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-timestamp = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-transaction-payment = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-transaction-payment-rpc-runtime-api = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-utility = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
pallet-vesting = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-api = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-arithmetic = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-block-builder = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-consensus-aura = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-core = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-inherents = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-offchain = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-runtime = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-session = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-std = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-transaction-pool = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
sp-version = {branch = "polkadot-v0.9.13", default-features = false, git = "https://github.com/paritytech/substrate"}
# Runtime tests
frame-try-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.13", optional = true}
[features]
default = ["std"]
runtime-benchmarks = [
"attestation/runtime-benchmarks",
"crowdloan/runtime-benchmarks",
"ctype/runtime-benchmarks",
"delegation/runtime-benchmarks",
"did/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"frame-system-benchmarking",
"hex-literal",
"kilt-launch/runtime-benchmarks",
"runtime-common/runtime-benchmarks",
"kilt-support",
"kilt-support/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-did-lookup/runtime-benchmarks",
"pallet-indices/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
"pallet-vesting/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
std = [
"attestation/std",
"codec/std",
"crowdloan/std",
"ctype/std",
"delegation/std",
"did/std",
"frame-executive/std",
"frame-support/std",
"frame-system/std",
"frame-system-rpc-runtime-api/std",
"frame-try-runtime/std",
"kilt-launch/std",
"runtime-common/std",
"log/std",
"pallet-aura/std",
"pallet-authorship/std",
"pallet-balances/std",
"pallet-did-lookup/std",
"pallet-grandpa/std",
"pallet-indices/std",
"pallet-randomness-collective-flip/std",
"pallet-session/std",
"pallet-sudo/std",
"pallet-timestamp/std",
"pallet-transaction-payment/std",
"pallet-transaction-payment-rpc-runtime-api/std",
"pallet-vesting/std",
"scale-info/std",
"serde",
"sp-api/std",
"sp-arithmetic/std",
"sp-block-builder/std",
"sp-consensus-aura/std",
"sp-core/std",
"sp-inherents/std",
"sp-io/std",
"sp-offchain/std",
"sp-runtime/std",
"sp-session/std",
"sp-std/std",
"sp-transaction-pool/std",
"sp-version/std",
]
try-runtime = [
"attestation/try-runtime",
"delegation/try-runtime",
"crowdloan/try-runtime",
"ctype/try-runtime",
"did/try-runtime",
"frame-executive/try-runtime",
"frame-support/try-runtime",
"frame-system/try-runtime",
"frame-try-runtime",
"kilt-launch/try-runtime",
"pallet-aura/try-runtime",
"pallet-authorship/try-runtime",
"pallet-balances/try-runtime",
"pallet-grandpa/try-runtime",
"pallet-indices/try-runtime",
"pallet-randomness-collective-flip/try-runtime",
"pallet-session/try-runtime",
"pallet-sudo/try-runtime",
"pallet-timestamp/try-runtime",
"pallet-utility/try-runtime",
"pallet-transaction-payment/try-runtime",
"pallet-vesting/try-runtime",
]