forked from nervosnetwork/ckb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (75 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
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "ckb-cli"
version = "1.12.0"
license = "MIT"
authors = [
"Linfeng Qian <[email protected]>",
"Nervos Core Dev <[email protected]>",
]
edition = "2021"
description = "ckb command line interface"
[dependencies]
ckb-jsonrpc-types = "=0.118.0"
ckb-hash = "=0.118.0"
ckb-crypto = { version = "=0.118.0", features = ["secp"] }
ckb-build-info = "=0.118.0"
ckb-types = "=0.118.0"
ckb-util = "=0.118.0"
ckb-error = "=0.118.0"
ckb-script = "=0.118.0"
ckb-chain-spec = "=0.118.0"
ckb-sdk = { version = "3.4.0", features = ["native-tls-vendored"] }
ckb-mock-tx-types = "=0.118.0"
ckb-signer = { path = "ckb-signer", version = "0.4.1" }
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=1.3.1" }
jsonrpc-core-client = "18"
jsonrpc-core = "18"
jsonrpc-derive = "18"
jsonrpc-http-server = "18"
jsonrpc-server-utils = "18"
secp256k1 = { version = "0.29.0", features = ["recovery"] }
bitcoin = "0.32"
faster-hex = "0.6"
env_logger = "0.6"
crossbeam-channel = "0.5.8"
clap = "=3.0.0-beta.1"
clap_generate = "=3.0.0-beta.1"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8.23"
yaml-rust = "0.4.3"
dtoa = "0.4"
ansi_term = "^0.11.0"
colored = "^1.6.0"
atty = "^0.2.10"
anyhow = "1.0.63"
console = "0.15.0"
ctrlc = "3.2.3"
rustyline = "14.0.0"
rustyline-derive = "0.10.0"
shell-words = "0.1.0"
eaglesong = "0.1"
regex = "1.1.6"
dirs = "1.0.5"
url = "1.7.2"
log = "0.4.6"
chrono = "0.4"
rpassword = "3.0.2"
ipnetwork = "0.14"
multiaddr = { package = "parity-multiaddr", version = "0.4.0" }
byteorder = "1.3.2"
toml = "0.5.9"
tokio = { version = "1", features = ["net", "io-util", "rt"] }
futures = "0.3"
# remove this line when ckb-vm stick the version of ckb-vm-definitions
# ckb-vm-definitions = "=0.21.3"
[target.'cfg(unix)'.dependencies]
tui = "0.6.0"
termion = "1.5"
[dev-dependencies]
rand = "0.7"
[build-dependencies]
ckb-build-info = "=0.118.0"
[workspace]
members = ["ckb-signer", "plugin-protocol"]