This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
64 lines (58 loc) · 2.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
authors = ['Octopus Network <[email protected]>']
edition = '2018'
name = 'pallet-octopus-appchain'
version = "3.0.0-pre.0"
license = "Apache-2.0"
homepage = "https://oct.network"
repository = "https://github.com/octopus-network/pallet-octopus-appchain.git"
description = "FRAME pallet for joining the octopus network as an appchain."
readme = "README.md"
documentation = "https://docs.rs/pallet-octopus-appchain"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
base64 = { default-features = false, version = '0.13', features = ['alloc'] }
borsh = { default-features = false, version = '0.9.0' }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
hex = { default-features = false, version = '0.4', features = ['alloc'] }
log = { version = "0.4.0", default-features = false }
serde = { version = "1.0.119", default-features = false, features = ["derive"] }
serde_bytes = { version = "0.11", default-features = false, features = ["alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
frame-benchmarking = { default-features = false, version = "3.1.0", optional = true }
frame-support = { default-features = false, version = "3.0.0" }
frame-system = { default-features = false, version = "3.0.0" }
pallet-assets = { default-features = false, version = '3.0.0' }
pallet-balances = { default-features = false, version = '3.0.0' }
pallet-session = { default-features = false, version = '3.0.0' }
sp-core = { default-features = false, version = "3.0.0" }
sp-io = { default-features = false, version = "3.0.0" }
sp-runtime = { default-features = false, version = "3.0.0" }
sp-std = { default-features = false, version = "3.0.0" }
[dev-dependencies]
sp-keystore = { default-features = false, version = '0.9.0' }
[features]
default = ['std']
std = [
'base64/std',
'borsh/std',
'codec/std',
'hex/std',
'log/std',
'serde/std',
'serde_bytes/std',
'serde_json/std',
'frame-benchmarking/std',
'frame-support/std',
'frame-system/std',
'pallet-assets/std',
'pallet-balances/std',
'pallet-session/std',
'sp-core/std',
'sp-io/std',
'sp-runtime/std',
'sp-std/std',
]
runtime-benchmarks = ["frame-benchmarking"]
try-runtime = ["frame-support/try-runtime"]