summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2022-11-20 15:09:25 -0800
committerJack O'Connor <oconnor663@gmail.com>2022-11-20 15:11:41 -0800
commitafa717caf5bd6cbb90f5395e2642ffa679cac5be (patch)
tree80bce0e2378cf340687a1930e281abaf4c3d90fb
parentfa127b2030f4b23f52597ceb7ca02711ec3d9783 (diff)
downgrade os_str_bytes to v6.3.1 in b3sum/Cargo.lock
v6.4.0 has a bug where invalid UTF-16 filenames fail a debug_assert on Windows. See https://github.com/dylni/os_str_bytes/issues/14. The vast majority of b3sum users should be running a binary built in release mode and shouldn't be affected by this. This lockfile change fixes our CI, but note that `cargo install` doesn't respect lockfiles by default (without --locked), so anyone running a debug binary against invalid Windows filepaths (very rare) will still need to wait for an upstream patch release.
-rw-r--r--b3sum/Cargo.lock4
1 files changed, 2 insertions, 2 deletions
diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock
index 41ecac7..a8246ab 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -358,9 +358,9 @@ dependencies = [
[[package]]
name = "os_str_bytes"
-version = "6.4.0"
+version = "6.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7b5bf27447411e9ee3ff51186bf7a08e16c341efdde93f4d823e8844429bed7e"
+checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9"
[[package]]
name = "proc-macro-error"