1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

Drop unused extern crates.

This commit is contained in:
Martin Hoffmann
2018-07-27 14:38:45 +02:00
parent c3919ac639
commit 5c74ea7b9b
2 changed files with 1 additions and 7 deletions

View File

@ -5,7 +5,6 @@ authors = ["Martin Hoffmann <martin@nlnetlabs.nl>"]
[dependencies]
rpki = { git="https://github.com/NLnetLabs/rpki-rs.git" }
base64 = "^0.9"
bytes = "^0.4"
chrono = "^0.4"
clap = "2.0"
@ -15,6 +14,4 @@ futures = "^0.1"
futures-cpupool = "^0.1"
log = "^0.4"
num_cpus = "1.0"
ring = "^0.12"
untrusted = "^0.5"

View File

@ -18,17 +18,14 @@
//! local copy somewhere in the file system.
//!
//! [`Repository`]: repository/struct.Repository.html
extern crate base64;
extern crate bytes;
extern crate chrono;
#[macro_use] extern crate failure;
extern crate futures;
extern crate futures_cpupool;
#[macro_use] extern crate log;
extern crate num_cpus;
extern crate ring;
extern crate rpki;
extern crate untrusted;
pub mod repository;