|
@@ -6,12 +6,10 @@ edition = '2018'
|
|
|
|
|
|
[dependencies]
|
|
|
codec = { package = 'parity-scale-codec', version = '1.3.1', default-features = false, features = ['derive'] }
|
|
|
-rstd = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
sp-arithmetic = { package = 'sp-arithmetic', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
sp-runtime = { package = 'sp-runtime', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
frame-support = { package = 'frame-support', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
system = { package = 'frame-system', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
-timestamp = { package = 'sp-timestamp', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
minting = { package = 'pallet-token-mint', default-features = false, path = '../token-minting'}
|
|
|
|
|
|
[dev-dependencies]
|
|
@@ -19,16 +17,13 @@ sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com
|
|
|
sp-core = { package = 'sp-core', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
|
|
|
-
|
|
|
[features]
|
|
|
default = ['std']
|
|
|
std = [
|
|
|
'codec/std',
|
|
|
- 'rstd/std',
|
|
|
'sp-arithmetic/std',
|
|
|
'sp-runtime/std',
|
|
|
'frame-support/std',
|
|
|
'system/std',
|
|
|
- 'timestamp/std',
|
|
|
'minting/std',
|
|
|
]
|