-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (28 loc) · 946 Bytes
/
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
[package]
name = "substrate-account-filter"
version = "3.0.0"
authors = "Tomiwa Adeyemi"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/uncletom29/substrate-account-filter"
[features]
default = ['std']
std = [
'parity-scale-codec/std',
'sp-std/std',
'sp-runtime/std',
'frame-support/std',
'sp-core/std',
'sp-io/std',
'frame-system/std',
'serde',
]
[dependencies]
parity-scale-codec = { default-features = false, features = ['derive'], version = '2.1.1' }
serde = { features = ['derive'], optional = true, version = '1.0.101' }
sp-std = { default-features = false, version = '3.0.0' }
sp-runtime = { default-features = false, version = '3.0.0' }
sp-core = { default-features = false, version = '3.0.0' }
frame-support = { default-features = false, version = '3.0.0' }
frame-system = { default-features = false, version = '3.0.0' }
sp-io = { default-features = false, version = '3.0.0' }