-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
51 lines (47 loc) · 1.27 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
[package]
name = "ckb-capsule"
version = "0.10.5"
authors = ["Nervos Network"]
edition = "2021"
license = "MIT"
description = "Capsule is a development framework for creating smart contract for Nervos' CKB."
homepage = "https://github.com/nervosnetwork/capsule"
repository = "https://github.com/nervosnetwork/capsule"
[features]
default = []
strict-check = []
[dependencies]
anyhow = "1.0"
tera = "1.2"
lazy_static = "1.4"
serde = { version = "1.0", features = [ "derive" ] }
secp256k1 = "0.24"
serde_json = "1.0"
rpassword = "4.0"
serde_yaml = "0.9.21"
users = "0.10"
clap = { version = "2.33", default-features = false, features = ["suggestions", "vec_map"] }
ctrlc = "3.1"
atty = "0.2"
env_logger = "0.10.0"
log = "0.4"
faster-hex = "0.6"
phf = "0.8"
includedir = "0.6"
reqwest = { version = "0.11.11", features = ["blocking", "json"] }
jsonrpc-core = "18.0.0"
toml_edit = { version = "0.19.8", features = ["serde"] }
chrono = { version = "0.4.24", default-features = false, features = ["std"] }
# 0.2.3 breaks color output: https://github.com/matklad/xshell/issues/63
xshell = "=0.2.2"
path_macro = "1.0.0"
ckb-sdk = "3.1"
ckb-testtool = "0.13"
[build-dependencies]
includedir_codegen = "0.6"
[workspace]
members = [
"crates/tests",
]
exclude = ["tmp", "tests/test-contract"]
resolver = "2"