aboutsummaryrefslogtreecommitdiff
path: root/src/tftpd.rs
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2022-10-29 22:10:52 +0200
committerReiner Herrmann <reiner@reiner-h.de>2022-10-29 22:10:52 +0200
commit1850849402f043e5eb6554774995b602a2d05d45 (patch)
treeb25396f57c4c39fdaa53986e9566e711fb532060 /src/tftpd.rs
parent541e91f36139bbcac284b5c2a1097a0a843f31db (diff)
"extern crate" no longer required
Diffstat (limited to 'src/tftpd.rs')
-rw-r--r--src/tftpd.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/tftpd.rs b/src/tftpd.rs
index fea9d85..566b10b 100644
--- a/src/tftpd.rs
+++ b/src/tftpd.rs
@@ -12,17 +12,10 @@ use std::net::{SocketAddr, UdpSocket};
use std::path::{Path, PathBuf};
use std::time::Duration;
-extern crate nix;
use nix::unistd::{chroot, setresgid, setresuid, Gid, Uid, ROOT};
-
-extern crate getopts;
use getopts::Options;
-
-extern crate threadpool;
use threadpool::ThreadPool;
-extern crate rtftp;
-
#[derive(Clone)]
struct Configuration {
port: u16,