aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/tftpc.rs3
-rw-r--r--src/tftpd.rs7
2 files changed, 0 insertions, 10 deletions
diff --git a/src/tftpc.rs b/src/tftpc.rs
index 89937c2..0b49c5e 100644
--- a/src/tftpc.rs
+++ b/src/tftpc.rs
@@ -10,11 +10,8 @@ use std::net::{SocketAddr, ToSocketAddrs, UdpSocket};
use std::path::{Path, PathBuf};
use std::time::Duration;
-extern crate getopts;
use getopts::Options;
-extern crate rtftp;
-
#[allow(clippy::upper_case_acronyms)]
enum Operation {
RRQ,
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,