From 39004d5cce91e675ec44bfa424f60cd240a5cfa1 Mon Sep 17 00:00:00 2001 From: Erin Date: Sun, 5 Nov 2017 20:37:59 -0600 Subject: [PATCH] textium: pull in num_traits --- textium/Cargo.toml | 2 ++ textium/src/lib.rs | 1 + 2 files changed, 3 insertions(+) diff --git a/textium/Cargo.toml b/textium/Cargo.toml index d59028d..c7ccc3c 100644 --- a/textium/Cargo.toml +++ b/textium/Cargo.toml @@ -6,6 +6,8 @@ authors = ["Erin "] [dependencies] glium = "0.17" rusttype = "0.2.1" +num-traits = "0.1.40" [dev-dependencies] image = "0.15" +cgmath = "0.15" diff --git a/textium/src/lib.rs b/textium/src/lib.rs index f7888b2..f44c85c 100644 --- a/textium/src/lib.rs +++ b/textium/src/lib.rs @@ -8,6 +8,7 @@ extern crate rusttype; #[macro_use] extern crate glium; +extern crate num_traits; mod error; pub mod texture;