forked from nervosnetwork/capsule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 949 Bytes
/
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
[package]
name = "ckb-capsule"
version = "0.8.0"
authors = ["Nervos Network"]
edition = "2021"
license = "MIT"
description = "Capsule is a development framework for creating smart contract for Nervos' CKB layer 1 blockchain."
homepage = "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" ] }
toml = "0.5"
toml_edit = "0.1.5"
ckb-testtool = "0.8.0"
simple-jsonrpc-client = "0.1"
bech32 = "0.6"
secp256k1 = "0.20"
serde_json = "1.0"
chrono = "0.4"
rpassword = "4.0"
serde_yaml = "0.8.11"
users = "0.10"
clap = "2.33"
ctrlc = "3.1"
atty = "0.2"
env_logger = "0.7"
log = "0.4"
faster-hex = "0.6"
phf = "0.8"
includedir = "0.6"
reqwest = { version = "0.11.11", features = ["blocking", "json"] }
jsonrpc-core = "17.1"
[build-dependencies]
includedir_codegen = "0.6"
[workspace]
members = [
"tests",
]