-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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. > [!CAUTION] > For now this won't disable it on the `core-graphics-types` crate until gfx-rs/metal-rs#330 is merged.
- Loading branch information
Showing
3 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ targets = [ | |
] | ||
|
||
[dependencies] | ||
metal = "0.29" | ||
metal = { version = "0.29", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters