From 5d2742813b13df11f27437f79d0818b121dee907 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 9 Mar 2025 18:24:44 +0100 Subject: [PATCH] Remove no longer necessary extern crate --- src/lib/lib.rs | 3 --- src/smolnetd/main.rs | 7 ------- 2 files changed, 10 deletions(-) diff --git a/src/lib/lib.rs b/src/lib/lib.rs index 1dddb0da53..f83f3f3f1c 100644 --- a/src/lib/lib.rs +++ b/src/lib/lib.rs @@ -1,5 +1,2 @@ -extern crate log; -extern crate syscall; - pub mod error; pub mod logger; diff --git a/src/smolnetd/main.rs b/src/smolnetd/main.rs index e1d9a87655..57d13e725c 100644 --- a/src/smolnetd/main.rs +++ b/src/smolnetd/main.rs @@ -1,12 +1,5 @@ -extern crate event; #[macro_use] extern crate log; -extern crate byteorder; -extern crate netutils; -extern crate redox_netstack; -extern crate smoltcp; -extern crate syscall; - use std::process; use anyhow::{anyhow, bail, Context, Result};