forked from gautamdhameja/substrate-rbac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (37 loc) · 1.89 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
[package]
name = "access-control"
version = "0.1.1"
authors = ["Dan Henton"]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/WunderbarNetwork/access-control"
[dependencies]
log = { default-features = false, version = "0.4" }
scale-info = { version = '2.3.0', default-features = false, features = ['derive'] }
codec = { version = '3.2.1', default-features = false, features = ['derive'], package = 'parity-scale-codec' }
serde = { version = "1.0.130" }
sp-core = { version = '7.0.0', default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.37" }
sp-io = { version = '7.0.0', default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.37" }
sp-runtime = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.37" }
sp-std = { version = '5.0.0', default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.37" }
frame-benchmarking = { version = '4.0.0-dev', default-features = false, git = 'https://github.com/paritytech/substrate.git', optional = true, branch = "polkadot-v0.9.37" }
frame-support = { version = '4.0.0-dev', default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.37" }
frame-system = { version = '4.0.0-dev', default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = "polkadot-v0.9.37" }
[dev-dependencies]
test-context = { default-features = false, version = "0.1.4" }
[features]
default = ['std']
runtime-benchmarks = ['frame-benchmarking']
std = [
'codec/std',
'frame-benchmarking/std',
'frame-support/std',
'frame-system/std',
'scale-info/std',
'sp-core/std',
'sp-io/std',
'sp-std/std',
'sp-runtime/std',
'serde/std',
]
try-runtime = ['frame-support/try-runtime']