Skip to content

Commit a34fca1

Browse files
committed
fix: remove implicit, unintended, private bindgen feature
I'm not considering this as a breaking change because it was never intended to be part of the public API, and nobody seems to be using it anyway.
1 parent a6cb83e commit a34fca1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/aotuv_lancer_vorbis_sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ bindgen = { workspace = true, optional = true }
2828
[features]
2929
# Requires Clang and slows down the build, but guarantees that the bindings are tailored for the platform and up to date.
3030
# It is usually better to run the generate-bindings.sh script instead
31-
build-time-bindgen = ["bindgen"]
31+
build-time-bindgen = ["dep:bindgen"]

packages/ogg_next_sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ bindgen = { workspace = true, optional = true }
2121
[features]
2222
# Requires Clang and slows down the build, but guarantees that the bindings are tailored for the platform and up to date.
2323
# It is usually better to run the generate-bindings.sh script instead
24-
build-time-bindgen = ["bindgen"]
24+
build-time-bindgen = ["dep:bindgen"]

0 commit comments

Comments
 (0)