-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
118 lines (111 loc) · 3.14 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
[package]
authors.workspace = true
documentation.workspace = true
edition.workspace = true
homepage.workspace = true
license-file.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
name = "runtime-common"
description = "Common interfaces, types, constants and functionality for all KILT runtimes."
[dev-dependencies]
sp-io = {workspace = true, features = ["std"]}
[dependencies]
# External dependencies
codec = {package = "parity-scale-codec", workspace = true, features = ["derive"]}
log.workspace = true
kilt-asset-dids.workspace = true
scale-info = {workspace = true, features = ["derive"]}
smallvec.workspace = true
# Internal dependencies
attestation.workspace = true
ctype.workspace = true
delegation = {workspace = true, optional = true}
did = {workspace = true, optional = true}
pallet-did-lookup = {workspace = true, optional = true}
pallet-inflation = {workspace = true, optional = true}
kilt-support.workspace = true
parachain-staking.workspace = true
public-credentials.workspace = true
pallet-web3-names.workspace = true
# Substrate dependencies
frame-support.workspace = true
frame-system.workspace = true
pallet-authorship.workspace = true
pallet-balances.workspace = true
pallet-membership.workspace = true
pallet-transaction-payment.workspace = true
sp-consensus-aura.workspace = true
sp-core.workspace = true
sp-io.workspace = true
sp-runtime.workspace = true
sp-std.workspace = true
# Cumulus dependencies
cumulus-primitives-core.workspace = true
# Polkadot dependencies
polkadot-parachain.workspace = true
xcm.workspace = true
xcm-builder.workspace = true
xcm-executor.workspace = true
[features]
default = ["std"]
fast-gov = []
runtime-benchmarks = [
"attestation/runtime-benchmarks",
"ctype/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"kilt-support/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-membership/runtime-benchmarks",
"parachain-staking/runtime-benchmarks",
"polkadot-parachain/runtime-benchmarks",
"public-credentials/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
"xcm-executor/runtime-benchmarks",
]
std = [
"attestation/std",
"codec/std",
"ctype/std",
"cumulus-primitives-core/std",
"frame-support/std",
"frame-system/std",
"kilt-asset-dids/std",
"kilt-support/std",
"log/std",
"pallet-authorship/std",
"pallet-balances/std",
"pallet-membership/std",
"pallet-transaction-payment/std",
"parachain-staking/std",
"polkadot-parachain/std",
"public-credentials/std",
"scale-info/std",
"sp-consensus-aura/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"xcm-builder/std",
"xcm-executor/std",
"xcm/std",
]
try-runtime = [
"attestation/try-runtime",
"delegation",
"did",
"frame-support/try-runtime",
"frame-system/try-runtime",
"kilt-support/try-runtime",
"pallet-authorship/try-runtime",
"pallet-balances/try-runtime",
"pallet-did-lookup",
"pallet-inflation",
"pallet-membership/try-runtime",
"pallet-transaction-payment/try-runtime",
"parachain-staking/try-runtime",
"public-credentials/try-runtime",
]