From e5179f9926b46cc4255625f11561ae1c6eb1568b Mon Sep 17 00:00:00 2001 From: Nicolas Silva Date: Wed, 31 May 2017 18:10:56 +0200 Subject: [PATCH] Reexport trig::Trig and bump to 0.14.1 --- Cargo.toml | 2 +- src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4436ca7..6450a52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "euclid" -version = "0.14.0" +version = "0.14.1" authors = ["The Servo Project Developers"] description = "Geometry primitives" documentation = "https://docs.rs/euclid/" diff --git a/src/lib.rs b/src/lib.rs index c215322..42918d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,6 +84,7 @@ pub use rect::{Rect, TypedRect, rect}; pub use side_offsets::{SideOffsets2D, TypedSideOffsets2D}; #[cfg(feature = "unstable")] pub use side_offsets::SideOffsets2DSimdI32; pub use size::{Size2D, TypedSize2D, size2}; +pub use trig::Trig; pub mod approxeq; pub mod num;