Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed Apr 21, 2022
1 parent ac339da commit ed4a92f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bluer-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ name = "rfcat"
path = "src/rfcat.rs"

[dependencies]
bluer = { version = "0.14.0", path = "../bluer", features = ["full"] }
bluer = { version = "0.15.0", path = "../bluer", features = ["full"] }
futures = "0.3"
tokio = { version = "1", features = [
"io-std",
Expand All @@ -39,7 +39,7 @@ clap = { version = "3", features = ["derive"] }
crossterm = "0.23"
tab-pty-process = "0.2"
tokio-compat-02 = "0.2"
pretty-hex = "0.2"
pretty-hex = "0.3"
bytes = "1"
env_logger = "0.9"
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion bluer-tools/src/gattcat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ fn print_list<T: Display>(indent: usize, mut label: &str, values: impl IntoItera
}

fn to_hex(v: &[u8]) -> Vec<String> {
let cfg = HexConfig { title: false, ascii: true, width: 10, group: 0, chunk: 1 };
let cfg = HexConfig { title: false, ascii: true, width: 10, group: 0, chunk: 1, ..Default::default() };
let mut out = String::new();
hex_write(&mut out, &v, cfg).unwrap();

Expand Down

0 comments on commit ed4a92f

Please sign in to comment.