diff options
author | Stuart Stock <stuart@int08h.com> | 2019-01-19 14:21:35 -0600 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2019-01-19 15:12:37 -0600 |
commit | dda66ba5b6ab2fbdee3b9fcd92741b1127f9c597 (patch) | |
tree | b1206f0f45ddb7634b6b0c313d6f63929b98aaa7 /src/kms/gcpkms.rs | |
parent | 88f029137b7f519dd842ff745434ffaef4c05f82 (diff) | |
download | roughenough-dda66ba5b6ab2fbdee3b9fcd92741b1127f9c597.zip |
Rust 2018 edition migration
Diffstat (limited to 'src/kms/gcpkms.rs')
-rw-r--r-- | src/kms/gcpkms.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/kms/gcpkms.rs b/src/kms/gcpkms.rs index 1401925..f7d70a3 100644 --- a/src/kms/gcpkms.rs +++ b/src/kms/gcpkms.rs @@ -12,9 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -extern crate hex; -extern crate log; - #[cfg(feature = "gcpkms")] pub mod inner { extern crate base64; @@ -35,7 +32,7 @@ pub mod inner { use self::hyper_rustls::TlsClient; use self::oauth2::{ServiceAccountAccess, ServiceAccountKey}; - use kms::{EncryptedDEK, KmsError, KmsProvider, PlaintextDEK, AD}; + use crate::kms::{EncryptedDEK, KmsError, KmsProvider, PlaintextDEK, AD}; const GOOGLE_APP_CREDS: &str = &"GOOGLE_APPLICATION_CREDENTIALS"; |