-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.99 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.99 KB
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
[package]
name = "substrate-archive-backend"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
# External
parking_lot = "0.10"
futures = { version = "0.3" }
hashbrown = { version = "0.8", features = ["inline-more"] }
arc-swap = "0.4.7"
log = "0.4"
xtra = { version = "0.5.0-beta.4", features = ["with-smol-0_3"] }
# Parity
codec = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive", "full"] }
kvdb = "0.7"
kvdb-rocksdb = "0.9"
hash-db = "0.15"
parity-util-mem = "0.7"
# Substrate
sp-database = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
# Workspace
substrate-archive-common = { path = '../substrate-archive-common' }
[features]
default = ["logging"]
logging = ["substrate-archive-common/logging"]
test_rocksdb = []