-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (37 loc) · 1.69 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
[package]
name = "evo-kton"
version = "0.1.0"
authors = ["Darwinia Network <hello@itering.com>"]
edition = "2018"
[dependencies]
serde = { version = "1.0", optional = true }
safe-mix = { version = "1.0", default-features = false}
parity-codec = { version = "3.3", default-features = false, features = ["derive"] }
substrate-keyring = { git = 'https://github.com/paritytech/substrate.git', optional = true }
rstd = { package = "sr-std", git = 'https://github.com/paritytech/substrate.git', default-features = false }
primitives = { package = "sr-primitives", git = 'https://github.com/paritytech/substrate.git', default-features = false }
srml-support = { git = 'https://github.com/paritytech/substrate.git', default-features = false }
system = { package = "srml-system", git = 'https://github.com/paritytech/substrate.git', default-features = false }
timestamp = { package = "srml-timestamp", git = 'https://github.com/paritytech/substrate.git', default-features = false }
substrate-primitives = { git = 'https://github.com/paritytech/substrate.git', default-features = false }
dsupport = { package = "evo-support", path = "../../support", default-features = false }
balances = { package = "srml-balances", git = 'https://github.com/paritytech/substrate.git', default-features = false }
[dev-dependencies]
runtime_io = { package = "sr-io", git = 'https://github.com/paritytech/substrate.git' }
substrate-primitives = { git = 'https://github.com/paritytech/substrate.git' }
[features]
default = ["std"]
std = [
"serde",
"safe-mix/std",
"substrate-keyring",
"parity-codec/std",
"rstd/std",
"srml-support/std",
"primitives/std",
"system/std",
"timestamp/std",
"substrate-primitives/std",
"dsupport/std",
"balances/std",
]