Skip to content

Commit 135d317

Browse files
committedFeb 20, 2023
fix: compatibility with bstr v1.3, use *.as_bytes() instead of .as_ref().
`as_ref()` relies on a known target type which isn't always present. However, once there is only one implementation, that's no problem, but when that changes compilation fails due to ambiguity.
1 parent c56d336 commit 135d317

File tree

43 files changed

+63
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+63
-53
lines changed
 

‎gix-actor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gix-date = { version = "^0.4.2", path = "../gix-date" }
2222

2323
quick-error = "2.0.0"
2424
btoi = "0.4.2"
25-
bstr = { version = "1.0.1", default-features = false, features = ["std", "unicode"]}
25+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
2626
nom = { version = "7", default-features = false, features = ["std"]}
2727
itoa = "1.0.1"
2828
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}

‎gix-attributes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gix-path = { version = "^0.7.1", path = "../gix-path" }
2222
gix-quote = { version = "^0.4.1", path = "../gix-quote" }
2323
gix-glob = { version = "^0.5.4", path = "../gix-glob" }
2424

25-
bstr = { version = "1.0.1", default-features = false, features = ["std", "unicode"]}
25+
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"]}
2626
unicode-bom = "1.1.4"
2727
thiserror = "1.0.26"
2828
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}

0 commit comments

Comments
 (0)
Please sign in to comment.