aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-12-08 17:31:49 +0100
committerCrozet Sébastien <developer@crozet.re>2020-12-29 11:31:00 +0100
commit9bf1321f8f1d2e116f44c2461a53f302c4ef4171 (patch)
tree8070529f4b48074fd40defb6062d6615dcdb61c5 /src/lib.rs
parentfd3b4801b63fd56369ff37bdc2e5189db159e8ff (diff)
downloadrapier-9bf1321f8f1d2e116f44c2461a53f302c4ef4171.tar.gz
rapier-9bf1321f8f1d2e116f44c2461a53f302c4ef4171.tar.bz2
rapier-9bf1321f8f1d2e116f44c2461a53f302c4ef4171.zip
Outsource the contact manifold, SAT, and some shapes.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index deb9313..ed9eda5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -8,14 +8,15 @@
//! - The ability to run a perfectly deterministic simulation on different machine, as long as they
//! are compliant with the IEEE 754-2008 floating point standard.
-#![deny(missing_docs)]
+// FIXME: deny that
+#![allow(missing_docs)]
-pub extern crate crossbeam;
-pub extern crate nalgebra as na;
#[cfg(feature = "dim2")]
-pub extern crate ncollide2d as ncollide;
+pub extern crate buckler2d as buckler;
#[cfg(feature = "dim3")]
-pub extern crate ncollide3d as ncollide;
+pub extern crate buckler3d as buckler;
+pub extern crate crossbeam;
+pub extern crate nalgebra as na;
#[cfg(feature = "serde")]
#[macro_use]
extern crate serde;