aboutsummaryrefslogtreecommitdiff
path: root/src_testbed/lib.rs
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-07-19 21:35:56 +0700
committerGitHub <noreply@github.com>2024-07-19 16:35:56 +0200
commit55a7d8b7ad37227f5c97131c4852a94efe748194 (patch)
tree7f5ae681f5dfb8b75aaa38e140f7c85afc246e29 /src_testbed/lib.rs
parent0ff55411a457c70d218f1690692431c874d9a9d6 (diff)
downloadrapier-55a7d8b7ad37227f5c97131c4852a94efe748194.tar.gz
rapier-55a7d8b7ad37227f5c97131c4852a94efe748194.tar.bz2
rapier-55a7d8b7ad37227f5c97131c4852a94efe748194.zip
testbed: Remove use of missing log feature (#684)
This code has been here but not used for a long time. There's no log feature (or dependency) within the testbed crates.
Diffstat (limited to 'src_testbed/lib.rs')
-rw-r--r--src_testbed/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs
index 24c7c8d..e64d025 100644
--- a/src_testbed/lib.rs
+++ b/src_testbed/lib.rs
@@ -3,10 +3,6 @@
extern crate nalgebra as na;
-#[cfg(feature = "log")]
-#[macro_use]
-extern crate log;
-
pub use crate::graphics::{BevyMaterial, GraphicsManager};
pub use crate::harness::plugin::HarnessPlugin;
pub use crate::physics::PhysicsState;