-
Notifications
You must be signed in to change notification settings - Fork 416
/
Copy pathCargo.toml
67 lines (61 loc) · 1.58 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
[package]
name = "pallet-dapp-staking"
version = "0.1.0"
description = "Pallet for dApp staking v3 protocol"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
frame-support = { workspace = true }
frame-system = { workspace = true }
log = { workspace = true }
num-traits = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
serde = { workspace = true }
sp-arithmetic = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
astar-primitives = { workspace = true }
assert_matches = { workspace = true, optional = true }
frame-benchmarking = { workspace = true, optional = true }
[dev-dependencies]
pallet-balances = { workspace = true }
pallet-migrations = { workspace = true }
[features]
default = ["std"]
std = [
"serde/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"num-traits/std",
"sp-core/std",
"sp-runtime/std",
"sp-arithmetic/std",
"sp-io/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"astar-primitives/std",
"frame-benchmarking/std",
]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"assert_matches",
"frame-benchmarking/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"astar-primitives/try-runtime",
"frame-system/try-runtime",
"sp-runtime/try-runtime",
]