Skip to content

Commit

Permalink
Bump ckb dependencies to v0.117.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed Jul 25, 2024
1 parent 582ed56 commit 3773ba8
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
14 changes: 7 additions & 7 deletions ckb-debugger-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-debugger-api"
description = "Standalone debugger for Nervos CKB"
version = "0.116.1"
version = "0.117.0-rc5"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -10,12 +10,12 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
ckb-hash = "=0.116.1"
ckb-chain-spec = "=0.116.1"
ckb-jsonrpc-types = "=0.116.1"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.116.1" }
ckb-script = { version = "=0.116.1", default-features = false }
ckb-types = "=0.116.1"
ckb-hash = "=0.117.0-rc5"
ckb-chain-spec = "=0.117.0-rc5"
ckb-jsonrpc-types = "=0.117.0-rc5"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.117.0-rc5" }
ckb-script = { version = "=0.117.0-rc5", default-features = false }
ckb-types = "=0.117.0-rc5"
ckb-vm = "=0.24.9"
hex = "0.4"
regex = "1"
Expand Down
20 changes: 10 additions & 10 deletions ckb-debugger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-debugger"
description = "Standalone debugger for Nervos CKB"
version = "0.116.1"
version = "0.117.0-rc5"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]
edition = "2021"
Expand All @@ -13,17 +13,17 @@ probes = ["probe", "ckb-script/flatmemory"]

[dependencies]
clap = "2.33.0"
ckb-chain-spec = "=0.116.1"
ckb-debugger-api = { path = "../ckb-debugger-api", version = "0.116.1" }
ckb-hash = "=0.116.1"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.116.1" }
ckb-script = { version = "=0.116.1", default-features = false }
ckb-types = "=0.116.1"
ckb-chain-spec = "=0.117.0-rc5"
ckb-debugger-api = { path = "../ckb-debugger-api", version = "0.117.0-rc5" }
ckb-hash = "=0.117.0-rc5"
ckb-mock-tx-types = { path = "../ckb-mock-tx-types", version = "0.117.0-rc5" }
ckb-script = { version = "=0.117.0-rc5", default-features = false }
ckb-types = "=0.117.0-rc5"
ckb-vm = { version = "=0.24.9" }
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version = "0.116.1" }
ckb-vm-pprof = { path = "../ckb-vm-pprof", version = "0.116.1" }
ckb-vm-debug-utils = { path = "../ckb-vm-debug-utils", version = "0.117.0-rc5" }
ckb-vm-pprof = { path = "../ckb-vm-pprof", version = "0.117.0-rc5" }
env_logger = "0.4.3"
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version = "0.116.1" }
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version = "0.117.0-rc5" }
gdbstub = "0.6.6"
gdbstub_arch = "0.2.4"
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ckb-gdb-remote-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-gdb-remote-protocol"
edition = "2021"
version = "0.116.1"
version = "0.117.0-rc5"
description = "An implementation of the GDB remote protocol"
authors = ["Ted Mielczarek <[email protected]>"]
license = "Apache-2.0/MIT"
Expand Down
8 changes: 4 additions & 4 deletions ckb-mock-tx-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "ckb-mock-tx-types"
description = "CKB mock transaction types"
version = "0.116.1"
version = "0.117.0-rc5"
license = "MIT"
edition = "2021"
authors = ["Nervos Core Dev <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-types = "=0.116.1"
ckb-jsonrpc-types = "=0.116.1"
ckb-traits = "=0.116.1"
ckb-types = "=0.117.0-rc5"
ckb-jsonrpc-types = "=0.117.0-rc5"
ckb-traits = "=0.117.0-rc5"
serde = { version = "1.0", features = ["derive"] }
4 changes: 2 additions & 2 deletions ckb-vm-debug-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-debug-utils"
version = "0.116.1"
version = "0.117.0-rc5"
authors = ["Xuejie Xiao <[email protected]>"]
edition = "2021"
description = "Utils for ckb-debugger"
Expand All @@ -14,7 +14,7 @@ stdio = ["libc", "nix"]
byteorder = "1"
bytes = "1.0.0"
ckb-vm = "=0.24.9"
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version = "0.116.1" }
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version = "0.117.0-rc5" }
libc = { version = "0.2.47", optional = true }
log = "0.4.0"
nix = { version = "0.26.2", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions ckb-vm-pprof-converter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof-converter"
version = "0.116.1"
version = "0.117.0-rc5"
edition = "2021"
description = "Convert raw data generated by ckb-vm-pprof to proto format accepted by Google's pprof tool"
license = "MIT"
Expand All @@ -11,4 +11,4 @@ authors = ["Nervos Core Dev <[email protected]>"]
[dependencies]
clap = { version = "4.0.27", features = ["cargo"] }
protobuf = { version = "2.25.1", features = ["with-bytes", "with-serde"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.116.1" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.117.0-rc5" }
2 changes: 1 addition & 1 deletion ckb-vm-pprof-protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof-protos"
version = "0.116.1"
version = "0.117.0-rc5"
edition = "2021"
description = "Crate for generating Rust definitions from pprof proto"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion ckb-vm-pprof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-pprof"
version = "0.116.1"
version = "0.117.0-rc5"
authors = ["mohanson <[email protected]>"]
edition = "2021"
description = "Statistical CKB script cycles consumption flame graph"
Expand Down
4 changes: 2 additions & 2 deletions ckb-vm-signal-profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-vm-signal-profiler"
version = "0.116.1"
version = "0.117.0-rc5"
edition = "2021"
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"
license = "MIT"
Expand All @@ -18,4 +18,4 @@ log = "0.4.16"
nix = "0.23.1"
lazy_static = "1.4.0"
protobuf = { version = "2.25.1", features = ["with-bytes", "with-serde"] }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.116.1" }
ckb-vm-pprof-protos = { path = "../ckb-vm-pprof-protos", version = "0.117.0-rc5" }

0 comments on commit 3773ba8

Please sign in to comment.