-
Notifications
You must be signed in to change notification settings - Fork 418
/
Copy pathCargo.toml
86 lines (77 loc) · 2.25 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
[package]
name = "astar-primitives"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
# third-party dependencies
impl-trait-for-tuples = { workspace = true }
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
# Ethereum/Frontier dependencies
ethereum = { workspace = true, features = ["with-codec"] }
ethereum-types = { workspace = true }
fp-evm = { workspace = true }
# Substrate dependencies
frame-support = { workspace = true }
frame-system = { workspace = true }
pallet-assets = { workspace = true }
pallet-collective = { workspace = true }
pallet-membership = { workspace = true }
pallet-treasury = { workspace = true }
sp-arithmetic = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
# XCM dependencies
xcm = { workspace = true }
xcm-builder = { workspace = true }
xcm-executor = { workspace = true }
# ORML dependencies
orml-oracle = { workspace = true }
orml-traits = { workspace = true }
pallet-contracts = { workspace = true }
# Frontier dependencies
pallet-evm = { workspace = true }
# Astar pallets & dependencies
pallet-evm-precompile-assets-erc20 = { workspace = true }
pallet-evm-precompile-dispatch = { workspace = true }
pallet-xc-asset-config = { workspace = true }
[features]
default = ["std"]
std = [
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"ethereum-types/std",
"ethereum/std",
"fp-evm/std",
"frame-support/std",
"pallet-treasury/std",
"frame-system/std",
"pallet-membership/std",
"pallet-collective/std",
"sp-std/std",
"sp-runtime/std",
"sp-core/std",
"sp-io/std",
"xcm/std",
"xcm-builder/std",
"xcm-executor/std",
"orml-oracle/std",
"orml-traits/std",
"pallet-xc-asset-config/std",
"fp-evm/std",
"pallet-assets/std",
"pallet-evm/std",
"pallet-contracts/std",
"pallet-evm-precompile-assets-erc20/std",
"pallet-evm-precompile-dispatch/std",
"sp-arithmetic/std",
]
runtime-benchmarks = ["xcm-builder/runtime-benchmarks", "pallet-assets/runtime-benchmarks"]
try-runtime = ["pallet-contracts/try-runtime", "pallet-membership/try-runtime", "pallet-collective/try-runtime", "pallet-treasury/try-runtime"]