Skip to content

Commit

Permalink
removed legacy dep after switch to tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
krojew committed Sep 7, 2020
1 parent aaa2cde commit 63a6e95
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 10 deletions.
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,5 @@ tokio = { version = "0.2", features = ["rt-threaded", "sync", "tcp", "time", "io
tracing = "0.1"
uuid = { version = "0.8", features = ["std", "v4"] }

[dev-dependencies]
env_logger = "0.7"

[features]
unstable = []
1 change: 0 additions & 1 deletion examples/zookeeper_example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,5 @@ async fn zk_example() {

#[tokio::main]
async fn main() {
env_logger::init();
zk_example().await;
}
3 changes: 0 additions & 3 deletions tests/test_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ use zookeeper_async::recipes::cache::PathChildrenCache;
use zookeeper_async::CreateMode::*;
use zookeeper_async::{Acl, WatchedEvent, ZooKeeper, ZooKeeperExt};

use env_logger;
use std::sync::Arc;
use std::time::Duration;
use tracing::*;

#[tokio::test]
async fn path_children_cache_test() {
let _ = env_logger::try_init();

// Create a test cluster
let cluster = ZkCluster::start(1);

Expand Down
3 changes: 0 additions & 3 deletions tests/test_zk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use zookeeper_async::{Acl, CreateMode, WatchedEvent, ZooKeeper};

use test::ZkCluster;

use env_logger;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::Arc;
use std::thread;
Expand All @@ -14,8 +13,6 @@ use tracing::*;

#[tokio::test]
async fn zk_test() {
let _ = env_logger::try_init();

// Create a test cluster
let mut cluster = ZkCluster::start(3);

Expand Down

0 comments on commit 63a6e95

Please sign in to comment.