forked from kulupu/kulupu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (77 loc) · 3.78 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "kulupu"
version = "2.6.1"
authors = ["Wei Tang <[email protected]>"]
license = "GPL-3.0-or-later"
build = "build.rs"
edition = "2018"
[[bin]]
name = "kulupu"
path = "src/main.rs"
[dependencies]
futures = "0.3"
log = "0.4"
structopt = "0.3"
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonrpc-core = "15.0.0"
parking_lot = "0.10.0"
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-consensus-pow = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
pallet-contracts-rpc = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
contracts = { package = "pallet-contracts", git = "https://github.com/paritytech/substrate", branch = "kulupu", default-features = false }
pallet-rewards = { path = "frame/rewards" }
pallet-eras = { path = "frame/eras" }
kulupu-pow = { path = "pow" }
kulupu-runtime = { path = "runtime" }
kulupu-primitives = { path = "primitives" }
# benchmarking
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "kulupu" }
[features]
default = []
wasmtime = [
"sc-executor/wasmtime",
"sc-cli/wasmtime",
"sc-service/wasmtime",
]
runtime-benchmarks = [
"wasmtime",
"kulupu-runtime/runtime-benchmarks",
]
[workspace]
members = [
"runtime",
"pow",
"frame/rewards",
"frame/eras",
"frame/lockdrop",
]