aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-06-04 08:02:57 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-06-04 08:02:57 +0200
commit76e7a90752ef60a3b48fd20ad3e551945336479d (patch)
tree9fd59632d939b09dc7dc894ca5b17e241f009af3
parent70c88cf18f1db5aa7e2a49eb2cd7f4cb449da5d4 (diff)
parentdbec1bf79da449bbb84fe7da258c599da9e00df0 (diff)
downloadglutin-76e7a90752ef60a3b48fd20ad3e551945336479d.tar.gz
glutin-76e7a90752ef60a3b48fd20ad3e551945336479d.zip
Merge pull request #479 from metajack/official-crates
Switch to the official crates.
-rw-r--r--Cargo.toml6
-rw-r--r--src/lib.rs2
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4bcbac5..07e99be 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 612206e..784ea95 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;