Skip to content

Commit 57048fa

Browse files
committed
Disable default link feature on core-graphics-types
When the `link` feature was forwarded to `core-graphics-types` in its update in #297, it wasn't taken into account that the feature was enabled by default in https://togithub.com/servo/core-foundation-rs/pull/608, leading to the `link` feature to always remain enabled even if `default-features` are **disabled** on the `metal` crate. Disable the `link` feature by default on `core-graphics-types`, and rely on our (default-enabled) `link` feature to turn it back on from inside `metal`.
1 parent 864417d commit 57048fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mps = []
2828
link = ["core-graphics-types/link"]
2929

3030
[dependencies]
31-
core-graphics-types = "0.1.3"
31+
core-graphics-types = { version = "0.1.3", default-features = false }
3232
bitflags = "2"
3333
log = "0.4"
3434
block = "0.1.6"

0 commit comments

Comments
 (0)