forked from nervosnetwork/ckb-sdk-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (53 loc) · 1.5 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
[package]
name = "ckb-sdk"
version = "2.5.0"
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Rust SDK for CKB"
homepage = "https://github.com/nervosnetwork/ckb-sdk-rust"
repository = "https://github.com/nervosnetwork/ckb-sdk-rust"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
thiserror = "1.0.30"
anyhow = "1.0.63"
bech32 = "0.8.1"
derive-getters = "0.2.1"
log = "0.4.6"
reqwest = { version = "0.11", features = ["json", "blocking"] }
secp256k1 = { version = "0.24", features = ["recovery"] }
tokio-util = { version = "0.7.7", features = ["codec"] }
tokio = { version = "1" }
bytes = "1"
futures = "0.3"
jsonrpc-core = "18"
parking_lot = "0.12"
lru = "0.7.1"
dashmap = "5.4"
ckb-types = "=0.108.0"
ckb-dao-utils = "=0.108.0"
ckb-traits = "=0.108.0"
ckb-jsonrpc-types = "=0.108.0"
ckb-hash = "=0.108.0"
ckb-resource = "=0.108.0"
ckb-crypto = { version = "=0.108.0", features = ["secp"] }
ckb-script = { version = "=0.108.0"}
bitflags = "1.3.2"
sha3 = "0.10.1"
enum-repr-derive = "0.2.0"
# for feature test
rand = { version = "0.7.3", optional = true }
ckb-mock-tx-types = { version = "0.108.0", optional = true }
ckb-chain-spec = { version = "0.108.0", optional = true }
sparse-merkle-tree = "0.6.1"
lazy_static = "1.3.0"
[features]
default = []
test = []
[dev-dependencies]
clap = { version = "4.1.8", features = ["derive"] }
httpmock = "0.6"
async-global-executor = "2.3.1"
hex = "0.4"