-
Notifications
You must be signed in to change notification settings - Fork 41
/
Cargo.toml
102 lines (97 loc) · 3.29 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
[dependencies]
cfg-if = { workspace = true }
fixed = { workspace = true }
frame-benchmarking = { workspace = true, optional = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
hydra-dx-math = { workspace = true }
log = { workspace = true }
orml-traits = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true, features = ["derive"] }
sp-runtime = { workspace = true }
typenum = { workspace = true }
zeitgeist-primitives = { workspace = true }
zrml-market-commons = { 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-insecure-randomness-collective-flip = { workspace = true, optional = true }
pallet-timestamp = { workspace = true, optional = true }
pallet-treasury = { workspace = true, optional = true }
pallet-xcm = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
sp-api = { workspace = true, optional = true }
sp-io = { workspace = true, optional = true }
xcm = { workspace = true, optional = true }
xcm-builder = { workspace = true, optional = true }
zrml-authorized = { workspace = true, optional = true }
zrml-court = { workspace = true, optional = true }
zrml-global-disputes = { workspace = true, optional = true }
zrml-prediction-markets = { workspace = true, optional = true }
zrml-prediction-markets-runtime-api = { workspace = true, optional = true }
[dev-dependencies]
more-asserts = { workspace = true }
test-case = { workspace = true }
zrml-neo-swaps = { workspace = true, features = ["mock"] }
[features]
default = ["std"]
mock = [
"orml-currencies/default",
"orml-tokens/default",
"pallet-balances",
"pallet-insecure-randomness-collective-flip/default",
"pallet-timestamp/default",
"pallet-treasury/default",
"sp-api/default",
"sp-io/default",
"zeitgeist-primitives/mock",
"zrml-prediction-markets-runtime-api/default",
"xcm/default",
"orml-asset-registry/default",
"orml-currencies/default",
"orml-tokens/default",
"pallet-balances/default",
"pallet-timestamp/default",
"sp-api/default",
"sp-io/default",
"zrml-court/std",
"zrml-authorized/std",
"zrml-global-disputes/std",
"zrml-prediction-markets/std",
"zrml-prediction-markets/mock",
"zrml-prediction-markets/default",
"serde/default",
"env_logger/default",
]
parachain = ["zrml-prediction-markets/parachain"]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
"pallet-xcm/runtime-benchmarks",
]
std = [
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"orml-traits/std",
"parity-scale-codec/std",
"sp-runtime/std",
"xcm-builder/std",
"pallet-xcm/std",
"zeitgeist-primitives/std",
"zrml-market-commons/std",
]
try-runtime = [
"frame-support/try-runtime",
]
[package]
authors = ["Zeitgeist PM <contact@zeitgeist.pm>"]
edition.workspace = true
name = "zrml-neo-swaps"
version = "0.5.5"