diff options
author | Stuart Stock <stuart@int08h.com> | 2018-10-18 21:28:01 -0500 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2018-10-18 21:28:01 -0500 |
commit | 8ab9e36c3a745047ff9b42633ad86c042b68d450 (patch) | |
tree | f20d00bb80f8d0a2064a57b9a8dfe706977d32bf | |
parent | b801eda92ec0bb85057ee3c78f864ae2fa9f14b6 (diff) | |
download | roughenough-8ab9e36c3a745047ff9b42633ad86c042b68d450.zip |
correct imports to fix build
-rw-r--r-- | src/kms/gcpkms.rs | 1 | ||||
-rw-r--r-- | src/lib.rs | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/kms/gcpkms.rs b/src/kms/gcpkms.rs index 13303db..7c79f13 100644 --- a/src/kms/gcpkms.rs +++ b/src/kms/gcpkms.rs @@ -28,7 +28,6 @@ pub mod inner { use std::fmt; use std::env; use std::fmt::Formatter; - use std::result::Result; use std::str::FromStr; use std::result::Result; use std::default::Default; @@ -62,13 +62,9 @@ extern crate byteorder; extern crate core; extern crate time; extern crate yaml_rust; -#[macro_use] -extern crate hyper; extern crate hex; extern crate mio; extern crate mio_extras; -extern crate time; -extern crate yaml_rust; #[macro_use] extern crate log; |