This repository was archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
49 lines (42 loc) · 1.49 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
[package]
authors = ["Darwinia Network <hello@darwinia.network>"]
description = "Dynamic fee handling for EVM."
edition = "2018"
homepage = "https://darwinia.network/"
license = "GPL-3.0"
name = "dvm-dynamic-fee"
readme = "README.md"
repository = "https://github.com/darwinia-network/darwinia-common/"
version = "2.4.0"
[dependencies]
# crates
async-trait = { version = "0.1.42" }
codec = { package = "parity-scale-codec", version = "2.1.1", default-features = false }
# darwinia
darwinia-evm = { default-features = false, path = "../evm" }
# substrate
frame-support = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "darwinia-v0.11.1" }
frame-system = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "darwinia-v0.11.1" }
sp-core = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "darwinia-v0.11.1" }
sp-inherents = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "darwinia-v0.11.1" }
sp-runtime = { default-features = false, git = "https://github.com/darwinia-network/substrate.git", tag = "darwinia-v0.11.1" }
[features]
default = ["std"]
std = [
"crates-std",
"darwinia-std",
"substrate-std",
]
crates-std = [
"codec/std",
]
darwinia-std = [
"darwinia-evm/std",
]
substrate-std = [
"frame-support/std",
"frame-system/std",
"sp-core/std",
"sp-inherents/std",
"sp-runtime/std",
]