Skip to content

Commit c919a1d

Browse files
authored
Merge pull request #14 from mohanson/updateckb
Update ckb to the latest develop
2 parents 11c0eb5 + fc241d9 commit c919a1d

File tree

9 files changed

+467
-222
lines changed

9 files changed

+467
-222
lines changed

Cargo.toml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ckb-standalone-debugger"
33
description = "Standalone debugger for Nervos CKB"
4-
version = "0.4.1"
4+
version = "0.5.0-rc1"
55
license = "MIT"
66
authors = ["Nervos Core Dev <dev@nervos.org>"]
77
edition = "2018"
@@ -11,10 +11,12 @@ exclude = ["bins", "js"]
1111
crate-type = ["cdylib", "rlib"]
1212

1313
[dependencies]
14-
ckb-error = "0.42.0"
15-
ckb-traits = "0.42.0"
16-
ckb-types = "0.42.0"
17-
ckb-jsonrpc-types = "0.42.0"
14+
ckb-chain-spec = "0.100.0-rc2"
15+
ckb-error = "0.100.0-rc2"
16+
ckb-traits = "0.100.0-rc2"
17+
ckb-types = "0.100.0-rc2"
18+
ckb-jsonrpc-types = "0.100.0-rc2"
19+
ckb-script = { version="0.100.0-rc2", default-features = false, features = ["detect-asm"] }
1820
faster-hex = "0.4.0"
1921
serde = "1.0"
2022
serde_derive = "1.0"
@@ -24,10 +26,5 @@ serde_plain = "0.3.0"
2426
js-sys = "0.3.27"
2527
wasm-bindgen = "0.2.50"
2628

27-
[dependencies.ckb-script]
28-
version = "0.42.0"
29-
default-features = false
30-
features = ["detect-asm"]
31-
3229
[dev-dependencies]
3330
byteorder = "1.3.2"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ For Rust library usage, refer to the included tests, they are quite self-explana
88
See the command line help part for usage on the binary debugger:
99

1010
```
11-
$ ckb-debugger --help
12-
CKB standalone debugger 0.4.0
11+
ckb-debugger 0.5.0-rc1
1312
1413
USAGE:
1514
ckb-debugger [FLAGS] [OPTIONS] --script-group-type <script-group-type> --tx-file <tx-file>
@@ -28,6 +27,7 @@ OPTIONS:
2827
-r, --replace-binary <replace-binary> File used to replace the binary denoted in the script
2928
-g, --script-group-type <script-group-type> Script group type [possible values: lock, type]
3029
-h, --script-hash <script-hash> Script hash
30+
--script-version <script-version> Script version
3131
--skip-end <skip-end> End address to skip printing debug info
3232
--skip-start <skip-start> Start address to skip printing debug info
3333
-t, --tx-file <tx-file> Filename containing JSON formatted transaction dump

0 commit comments

Comments
 (0)