mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Merge pull request #479 from metajack/official-crates
Switch to the official crates.
This commit is contained in:
commit
76e7a90752
|
@ -32,9 +32,9 @@ version = "0"
|
||||||
|
|
||||||
[target.x86_64-apple-darwin.dependencies]
|
[target.x86_64-apple-darwin.dependencies]
|
||||||
objc = "0.1"
|
objc = "0.1"
|
||||||
glutin_cocoa = "0"
|
cocoa = "0"
|
||||||
glutin_core_graphics = "0"
|
core-foundation = "0"
|
||||||
glutin_core_foundation = "0"
|
core-graphics = "0"
|
||||||
|
|
||||||
[target.i686-pc-windows-gnu.dependencies]
|
[target.i686-pc-windows-gnu.dependencies]
|
||||||
winapi = "~0.1.18"
|
winapi = "~0.1.18"
|
||||||
|
|
|
@ -50,7 +50,7 @@ extern crate cocoa;
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
extern crate core_foundation;
|
extern crate core_foundation;
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
extern crate glutin_core_graphics as core_graphics;
|
extern crate core_graphics;
|
||||||
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
|
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
|
||||||
extern crate x11_dl;
|
extern crate x11_dl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue