-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathCargo.toml
More file actions
111 lines (106 loc) · 3.18 KB
/
Copy pathCargo.toml
File metadata and controls
111 lines (106 loc) · 3.18 KB
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
103
104
105
106
107
108
109
110
111
[package]
name = "subtensor-precompiles"
version = "0.1.0"
edition.workspace = true
authors = ["Rao Foundation <https://github.com/RaoFoundation/>"]
homepage = "https://bittensor.com"
publish = false
repository = "https://github.com/RaoFoundation/subtensor/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec.workspace = true
ed25519-dalek = { workspace = true, features = ["alloc"] }
fp-evm.workspace = true
frame-support.workspace = true
frame-system.workspace = true
log.workspace = true
pallet-alpha-assets.workspace = true
pallet-balances.workspace = true
pallet-evm.workspace = true
pallet-evm-precompile-dispatch.workspace = true
pallet-evm-precompile-modexp.workspace = true
pallet-evm-precompile-sha3fips.workspace = true
pallet-evm-precompile-simple.workspace = true
pallet-evm-precompile-bn128.workspace = true
pallet-subtensor-proxy.workspace = true
precompile-utils.workspace = true
scale-info.workspace = true
sp-core.workspace = true
sp-io.workspace = true
sp-runtime.workspace = true
sp-std.workspace = true
subtensor-runtime-common.workspace = true
substrate-fixed.workspace = true
pallet-subtensor.workspace = true
pallet-subtensor-swap.workspace = true
pallet-admin-utils.workspace = true
subtensor-swap-interface.workspace = true
pallet-crowdloan.workspace = true
pallet-drand.workspace = true
pallet-evm-chain-id.workspace = true
pallet-shield.workspace = true
pallet-scheduler.workspace = true
pallet-timestamp.workspace = true
[lints]
workspace = true
[features]
default = ["std"]
std = [
"codec/std",
"ed25519-dalek/std",
"fp-evm/std",
"frame-support/std",
"frame-system/std",
"log/std",
"pallet-admin-utils/std",
"pallet-alpha-assets/std",
"pallet-balances/std",
"pallet-crowdloan/std",
"pallet-drand/std",
"pallet-evm-precompile-bn128/std",
"pallet-evm-chain-id/std",
"pallet-evm-precompile-dispatch/std",
"pallet-evm-precompile-modexp/std",
"pallet-evm-precompile-sha3fips/std",
"pallet-evm-precompile-simple/std",
"pallet-evm/std",
"pallet-preimage/std",
"pallet-scheduler/std",
"pallet-subtensor-proxy/std",
"pallet-subtensor-swap/std",
"pallet-subtensor/std",
"pallet-shield/std",
"pallet-timestamp/std",
"precompile-utils/std",
"scale-info/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"substrate-fixed/std",
"subtensor-runtime-common/std",
"subtensor-swap-interface/std",
]
runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"pallet-admin-utils/runtime-benchmarks",
"pallet-balances/runtime-benchmarks",
"pallet-crowdloan/runtime-benchmarks",
"pallet-drand/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
"pallet-preimage/runtime-benchmarks",
"pallet-scheduler/runtime-benchmarks",
"pallet-shield/runtime-benchmarks",
"pallet-subtensor-swap/runtime-benchmarks",
"pallet-subtensor-proxy/runtime-benchmarks",
"pallet-subtensor/runtime-benchmarks",
"pallet-timestamp/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"subtensor-runtime-common/runtime-benchmarks",
"subtensor-swap-interface/runtime-benchmarks"
]
[dev-dependencies]
pallet-preimage = { workspace = true, features = ["std"] }
precompile-utils = { workspace = true, features = ["std", "testing"] }