forked from nervosnetwork/ckb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (49 loc) · 1.55 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
[package]
name = "ckb-cli"
version = "0.2.0"
license = "MIT"
authors = ["Linfeng Qian <thewawar@gmail.com>"]
edition = "2018"
[dependencies]
numext-fixed-hash = "~0.1"
jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
ckb-core = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
occupied-capacity = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
hash = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
ckb-util = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
crypto = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0", features = ["secp", "bech32"] }
build-info = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
ckb-sdk = { path = "ckb-sdk" }
jsonrpc-client-core = "0.5.0"
secp256k1 = {version = "0.12.2" }
faster-hex = "0.3"
env_logger = "0.6"
bytes = { version="0.4", features = ["serde"] }
crossbeam-channel = "0.3"
clap = "2.33.0"
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8.9"
yaml-rust = "0.4.3"
dtoa = "0.4"
ansi_term = "^0.11.0"
colored = "^1.6.0"
atty = "^0.2.10"
rustyline = "4.0.0"
shell-words = "0.1.0"
regex = "1.1.6"
dirs = "1.0.5"
url = "1.7.2"
log = "0.4.6"
bech32 = "0.6.0"
chrono = "0.4"
rkv = "0.9.5"
bincode = "1.1.4"
[target.'cfg(unix)'.dependencies]
tui = "0.6.0"
termion = "1.5"
[build-dependencies]
build-info = { git = "https://github.com/nervosnetwork/ckb", branch = "rc/v0.14.0" }
[workspace]
members = ["ckb-sdk"]