forked from zeitgeistpm/zeitgeist
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
98 lines (93 loc) · 3.08 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
[dependencies]
frame-benchmarking = { workspace = true, optional = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
orml-traits = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true, features = ["derive"] }
serde = { workspace = true, optional = true }
sp-arithmetic = { workspace = true }
sp-runtime = { workspace = true }
zeitgeist-primitives = { workspace = true }
zrml-authorized = { workspace = true }
zrml-court = { workspace = true }
zrml-global-disputes = { workspace = true }
zrml-liquidity-mining = { workspace = true }
zrml-market-commons = { workspace = true }
zrml-simple-disputes = { workspace = true }
# Mock
env_logger = { workspace = true, optional = true }
orml-asset-registry = { workspace = true, optional = true }
orml-currencies = { workspace = true, optional = true }
orml-tokens = { workspace = true, optional = true }
pallet-balances = { workspace = true, optional = true }
pallet-randomness-collective-flip = { workspace = true, optional = true }
pallet-timestamp = { workspace = true, optional = true }
pallet-treasury = { workspace = true, optional = true }
sp-api = { workspace = true, optional = true }
sp-io = { workspace = true, optional = true }
xcm = { workspace = true, optional = true }
zrml-prediction-markets-runtime-api = { workspace = true, optional = true }
zrml-rikiddo = { workspace = true, optional = true }
zrml-swaps = { workspace = true, optional = true }
[dev-dependencies]
more-asserts = { workspace = true }
test-case = { workspace = true }
zrml-prediction-markets = { workspace = true, features = ["mock", "default"] }
[features]
default = ["std"]
mock = [
"orml-currencies/default",
"orml-tokens/default",
"pallet-balances",
"pallet-randomness-collective-flip/default",
"pallet-timestamp/default",
"pallet-treasury/default",
"serde/default",
"sp-api/default",
"sp-io/default",
"zeitgeist-primitives/mock",
"zrml-prediction-markets-runtime-api/default",
"zrml-rikiddo/default",
"zrml-swaps/default",
"xcm/default",
"orml-asset-registry/default",
"env_logger/default",
]
parachain = []
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"orml-asset-registry?/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
"zeitgeist-primitives/mock",
]
std = [
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"orml-asset-registry?/std",
"orml-traits/std",
"parity-scale-codec/std",
'scale-info/std',
"serde?/std",
"sp-arithmetic/std",
"sp-runtime/std",
"zeitgeist-primitives/std",
"zrml-authorized/std",
"zrml-court/std",
"zrml-liquidity-mining/std",
"zrml-market-commons/std",
"zrml-simple-disputes/std",
"zrml-global-disputes/std",
"xcm?/std",
]
try-runtime = [
"frame-support/try-runtime",
]
[package]
authors = ["Zeitgeist PM <[email protected]>"]
edition = "2021"
name = "zrml-prediction-markets"
version = "0.4.3"