Skip to content

Commit

Permalink
Upgrade pretty-hex
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Mar 11, 2024
1 parent 6e15d57 commit 71bc6c9
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/fluke-buffet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring" }
memchr = "2.7.1"
memmap2 = { version = "0.7.1", default-features = false }
nom = "7.1.3"
pretty-hex = "0.3.0"
pretty-hex = "0.4.1"
thiserror = { version = "1.0.57", default-features = false }
tokio = { version = "1.36.0", features = ["sync", "macros", "rt", "io-util"] }
tracing = "0.1.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke-hpack/src/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,7 @@ mod interop_tests {
fn test_story(story_file_name: PathBuf) {
// Set up the story by parsing the given file
let story: TestStory = {
let buf = std::fs::read_to_string(&story_file_name);
let buf = std::fs::read_to_string(story_file_name);
let raw_story: RawTestStory = serde_json::from_str(&buf.unwrap()).unwrap();
raw_story.try_into().unwrap()
};
Expand Down
2 changes: 1 addition & 1 deletion crates/fluke/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ http = "0.2.12"
fluke-maybe-uring = { version = "0.1.1", path = "../fluke-maybe-uring" }
memchr = "2.7.1"
nom = { version = "7.1.3", default-features = false }
pretty-hex = { version = "0.3.0", default-features = false }
pretty-hex = { version = "0.4.1", default-features = false }
smallvec = { version = "1.13.1", default-features = false, features = ["const_generics", "const_new", "union"] }
thiserror = { version = "1.0.57", default-features = false }
tokio = { version = "1.36.0", features = ["macros", "sync"] }
Expand Down
12 changes: 9 additions & 3 deletions test-crates/fluke-curl-tests/Cargo.lock

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

4 changes: 2 additions & 2 deletions test-crates/fluke-h2spec/Cargo.lock

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

12 changes: 9 additions & 3 deletions test-crates/fluke-tls-sample/Cargo.lock

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

0 comments on commit 71bc6c9

Please sign in to comment.