From dbec1bf79da449bbb84fe7da258c599da9e00df0 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Wed, 3 Jun 2015 22:13:18 -0600 Subject: [PATCH] Switch to the official crates. cocoa, core-foundation, and core-graphics are now on crates.io. --- Cargo.toml | 6 +++--- src/lib.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4bcbac53..07e99beb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,9 +32,9 @@ version = "0" [target.x86_64-apple-darwin.dependencies] objc = "0.1" -glutin_cocoa = "0" -glutin_core_graphics = "0" -glutin_core_foundation = "0" +cocoa = "0" +core-foundation = "0" +core-graphics = "0" [target.i686-pc-windows-gnu.dependencies] winapi = "~0.1.18" diff --git a/src/lib.rs b/src/lib.rs index 612206ed..784ea95a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -50,7 +50,7 @@ extern crate cocoa; #[cfg(target_os = "macos")] extern crate core_foundation; #[cfg(target_os = "macos")] -extern crate glutin_core_graphics as core_graphics; +extern crate core_graphics; #[cfg(any(target_os = "linux", target_os = "freebsd"))] extern crate x11_dl;