-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
70 lines (65 loc) · 1.97 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
[package]
name = "ckb-light-client"
version = "0.4.1"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A CKB light client based on FlyClient."
homepage = "https://github.com/nervosnetwork/ckb-light-client"
repository = "https://github.com/nervosnetwork/ckb-light-client"
[dependencies]
ckb-app-config = "0.119.0"
ckb-async-runtime = "0.119.0"
ckb-stop-handler = "0.119.0"
ckb-constant = "0.119.0"
ckb-types = "0.119.0"
ckb-network = "0.119.0"
ckb-jsonrpc-types = "0.119.0"
ckb-error = "0.119.0"
ckb-script = "0.119.0"
ckb-chain-spec = "0.119.0"
ckb-traits = "0.119.0"
ckb-resource = "0.119.0"
ckb-verification = "0.119.0"
ckb-systemtime = "0.119.0"
ckb-hash = "0.119.0"
ckb-merkle-mountain-range = "0.5.1"
golomb-coded-set = "0.2.1"
rocksdb = { package = "ckb-rocksdb", version ="=0.21.1", features = ["snappy"], default-features = false }
numext-fixed-uint = { version = "0.1", features = ["support_rand", "support_heapsize", "support_serde"] }
anyhow = "1.0.56"
thiserror = "1.0.30"
log = "0.4.14"
env_logger = "0.9.0"
clap = { version = "2.34.0", features = ["yaml"] }
serde = { version = "1.0.136", features = ["derive"] }
toml = "0.5.8"
ctrlc = { version = "3.2.1", features = ["termination"] }
path-clean = "0.1.0"
rand = "0.8.5"
dashmap = "5.3"
linked-hash-map = "0.5.6"
jsonrpc-core = "18.0"
jsonrpc-derive = "18.0"
jsonrpc-http-server = "18.0"
jsonrpc-server-utils = "18.0"
governor = "0.6.3"
[dev-dependencies]
ckb-shared = "0.119.0"
ckb-chain = "0.119.0"
ckb-tx-pool = "0.119.0"
ckb-store = "0.119.0"
ckb-systemtime = { version = "0.119.0", features = ["enable_faketime"] }
tempfile = "3.0"
rand = "0.6"
serde_json = "1.0"
tokio = { version = "1.20" }
lazy_static = "1.3.0"
[features]
default = []
portable = ["rocksdb/portable"]
march-native = ["rocksdb/march-native"]
[profile.release]
overflow-checks = true
[badges]
maintenance = { status = "experimental" }