From 8f7220f03d3c23574b9ece09d81d32e862f1b5c6 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Sun, 24 Jan 2021 11:13:44 +0100 Subject: Rename cdl to parry. --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index c177173..08be61a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,13 +12,13 @@ #![allow(missing_docs)] #[cfg(all(feature = "dim2", feature = "f32"))] -pub extern crate cdl2d as cdl; +pub extern crate parry2d as parry; #[cfg(all(feature = "dim2", feature = "f64"))] -pub extern crate cdl2d_f64 as cdl; +pub extern crate parry2d_f64 as parry; #[cfg(all(feature = "dim3", feature = "f32"))] -pub extern crate cdl3d as cdl; +pub extern crate parry3d as parry; #[cfg(all(feature = "dim3", feature = "f64"))] -pub extern crate cdl3d_f64 as cdl; +pub extern crate parry3d_f64 as parry; pub extern crate crossbeam; pub extern crate nalgebra as na; @@ -136,7 +136,7 @@ pub mod pipeline; pub mod utils; pub mod math { - pub use cdl::math::*; + pub use parry::math::*; #[cfg(feature = "dim2")] pub const MAX_MANIFOLD_POINTS: usize = 2; #[cfg(feature = "dim3")] -- cgit