Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused deps #118

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ckb-debugger-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ ckb-script = { version = "=0.111.0", default-features = false }
ckb-types = "=0.111.0"
ckb-vm = "=0.24.6"
hex = "0.4"
js-sys = "0.3.27"
regex = "1"
serde = { version="1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion ckb-debugger/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let matches_args = matches.values_of("args").unwrap_or_default();
let matches_read_file_name = matches.value_of("read-file");

let verifier_args: Vec<String> = matches_args.into_iter().map(|s| s.clone().into()).collect();
let verifier_args: Vec<String> = matches_args.into_iter().map(|s| s.into()).collect();
let verifier_args_byte: Vec<Bytes> = verifier_args.into_iter().map(|s| s.into()).collect();

let fs_syscall = if let Some(file_name) = matches_read_file_name {
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,6 +1,6 @@
[package]
name = "ckb-gdb-remote-protocol"
edition = "2018"
edition = "2021"
version = "0.111.0"
description = "An implementation of the GDB remote protocol"
authors = ["Ted Mielczarek <[email protected]>"]
Expand Down
1 change: 0 additions & 1 deletion ckb-vm-debug-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ stdio = ["libc", "nix"]
byteorder = "1"
bytes = "1.0.0"
ckb-vm = "=0.24.6"
env_logger = "0.4.3"
ckb-gdb-remote-protocol = { path = "../ckb-gdb-remote-protocol", version="0.111.0" }
libc = { version = "0.2.47", optional = true }
log = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion ckb-vm-pprof-protos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-vm-pprof-protos"
version = "0.111.0"
edition = "2018"
edition = "2021"
description = "Crate for generating Rust definitions from pprof proto"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion ckb-vm-signal-profiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ckb-vm-signal-profiler"
version = "0.111.0"
edition = "2018"
edition = "2021"
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"

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