Skip to content

Commit c54b995

Browse files
committed
runtime: Disable default link feature on metal crate
Since we're only using a few types from the `metal` crate, this helper library has no reason or need to link against framework libraries (i.e. we don't call global static functions on them). Disable the `link` feature on the `metal` crate, but note that for now this won't disable it on the `core-graphics-types` crate until gfx-rs/metal-rs#330 is merged.
1 parent ee56bf4 commit c54b995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ targets = [
2020
]
2121

2222
[dependencies]
23-
metal = "0.29"
23+
metal = { version = "0.29", default-features = false }

0 commit comments

Comments
 (0)