-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (32 loc) · 922 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
[package]
name = "ckb-testtool"
version = "0.14.0"
authors = ["Nervos Network"]
edition = "2021"
license = "MIT"
description = "CKB contract testing tools"
repository = "https://github.com/nervosnetwork/ckb-testtool"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
native-simulator = [ "libloading", "serde_json" ]
[dependencies]
ckb-always-success-script = "0.0.1"
rand = "0.8"
lazy_static = "1.4"
ckb-chain-spec = "0.119.0"
ckb-types = "0.119.0"
ckb-error = "0.119.0"
ckb-script = "0.119.0"
ckb-hash = "0.119.0"
ckb-jsonrpc-types = "0.119.0"
ckb-crypto = "0.119.0"
ckb-resource = "0.119.0"
ckb-verification = "0.119.0"
ckb-traits = "0.119.0"
ckb-mock-tx-types = "0.119.0"
libloading = { version = "0.8.4", optional = true }
serde_json = { version = "1.0", optional = true }
faster-hex = "0.6.1"
[dev-dependencies]
anyhow = "1.0"
ckb-system-scripts = "0.5"