From 3cfe1bede2b024a1246af976b90ca7237ca7cc3d Mon Sep 17 00:00:00 2001 From: Simon THOBY Date: Tue, 19 Oct 2021 22:42:15 +0200 Subject: 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. --- rustables/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rustables/src/lib.rs') diff --git a/rustables/src/lib.rs b/rustables/src/lib.rs index e5b5375..c5d53c0 100644 --- a/rustables/src/lib.rs +++ b/rustables/src/lib.rs @@ -54,6 +54,9 @@ use thiserror::Error; +#[macro_use] +extern crate log; + pub use rustables_sys; use rustables_sys::libc; use std::{convert::TryFrom, ffi::c_void, ops::Deref}; -- cgit v1.2.3