aboutsummaryrefslogtreecommitdiff
path: root/rustables/src/expr/cmp.rs
diff options
context:
space:
mode:
authorSimon THOBY <git@nightmared.fr>2021-10-19 22:42:15 +0200
committerSimon THOBY <git@nightmared.fr>2021-10-19 22:42:19 +0200
commit3cfe1bede2b024a1246af976b90ca7237ca7cc3d (patch)
treeb3c372da7c9d828d658d4f25690197842521b417 /rustables/src/expr/cmp.rs
parent4a87680c89017730f0a8715f87118c63bb8b7ae8 (diff)
Revert part of aa1cc7089a70d134f2d71f84293628e05818b07f
tokio-rs/tracing pulls in a lot more dependencies that log, also potentially impacting negatively the build time of the crate. While this was an acceptable choice for a single user of the crate, which was what I had in mind when I made this commit in the first place, it is not perhaps not a sensible choice for a project that aims at gaining tractiong and seeks to provide a simple, safe and abstract wrapper for libnftnl. Hence the move back to the log crate.
Diffstat (limited to 'rustables/src/expr/cmp.rs')
-rw-r--r--rustables/src/expr/cmp.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/rustables/src/expr/cmp.rs b/rustables/src/expr/cmp.rs
index f22a3ff..5c56492 100644
--- a/rustables/src/expr/cmp.rs
+++ b/rustables/src/expr/cmp.rs
@@ -7,7 +7,6 @@ use std::{
os::raw::c_char,
slice,
};
-use tracing::trace;
/// Comparison operator.
#[derive(Copy, Clone, Eq, PartialEq)]