Skip to content

Commit

Permalink
Remove unnecessary log dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
nical committed Jan 29, 2018
1 parent a768673 commit 1a119ca
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ unstable = []

[dependencies]
num-traits = {version = "0.1.32", default-features = false}
log = "0.3.1"
serde = { version = "1.0", features = ["serde_derive"] }

[dev-dependencies]
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@
//! assert_eq!(p.x, p.x_typed().get());
//! ```

#[cfg_attr(test, macro_use)]
extern crate log;
#[macro_use]
extern crate serde;

Expand Down
1 change: 0 additions & 1 deletion src/transform3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,6 @@ mod tests {
0.0, 0.0, -1.0, 0.0,
-1.0, -1.22222222, -0.0, 1.0
);
debug!("result={:?} expected={:?}", result, expected);
assert!(result.approx_eq(&expected));
}

Expand Down

0 comments on commit 1a119ca

Please sign in to comment.