-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
55 lines (48 loc) · 1.43 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
[dependencies]
frame-benchmarking = { workspace = true, optional = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive", "max-encoded-len"] }
scale-info = { workspace = true, features = ["derive"] }
sp-runtime = { workspace = true }
zeitgeist-primitives = { workspace = true }
# mock
env_logger = { workspace = true, optional = true }
pallet-balances = { workspace = true, optional = true }
sp-io = { workspace = true, optional = true }
# fuzz
arbitrary = { workspace = true, features = ["derive"], optional = true }
sp-core = { workspace = true, optional = true }
[dev-dependencies]
test-case = { workspace = true }
zrml-futarchy = { workspace = true, features = ["default", "mock"] }
[features]
default = ["std"]
fuzzing = ["arbitrary", "sp-core"]
mock = [
"env_logger/default",
"sp-io/default",
"pallet-balances/default",
"zeitgeist-primitives/mock",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
]
std = [
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"parity-scale-codec/std",
"sp-runtime/std",
"zeitgeist-primitives/std",
]
try-runtime = [
"frame-support/try-runtime",
]
[package]
authors = ["Zeitgeist PM <contact@zeitgeist.pm>"]
edition.workspace = true
name = "zrml-futarchy"
version = "0.5.5"