mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-06 00:00:10 +02:00
chore: prune dev-dependencies
Most dev dependendencies are unused now that examples are moved into a separate crate.
This commit is contained in:
@@ -282,8 +282,6 @@ fn delay_in_spawn() {
|
||||
|
||||
#[test]
|
||||
fn client_server_block_on() {
|
||||
let _ = env_logger::try_init();
|
||||
|
||||
let mut rt = rt();
|
||||
let (tx, rx) = mpsc::channel();
|
||||
|
||||
|
||||
@@ -44,8 +44,6 @@ fn send_sync_bound() {
|
||||
|
||||
#[test]
|
||||
fn spawn_shutdown() {
|
||||
let _ = env_logger::try_init();
|
||||
|
||||
let mut rt = Runtime::new().unwrap();
|
||||
let (tx, rx) = mpsc::channel();
|
||||
|
||||
@@ -167,8 +165,6 @@ fn nested_enter() {
|
||||
fn after_start_and_before_stop_is_called() {
|
||||
use std::sync::atomic::{AtomicUsize, Ordering};
|
||||
|
||||
let _ = env_logger::try_init();
|
||||
|
||||
let after_start = Arc::new(AtomicUsize::new(0));
|
||||
let before_stop = Arc::new(AtomicUsize::new(0));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user