diff options
author | Bernardo Meurer | 2021-01-24 23:38:44 -0800 |
---|---|---|
committer | Bernardo Meurer | 2021-01-26 10:33:05 -0800 |
commit | 815814529eec6f739eb1618fdf356e526b3879e1 (patch) | |
tree | 2e96e8eac1edf1742ea60b9f00e8df768d409b3b /src/deploy.rs | |
parent | c00e29a39df47c8cdba8c4bb43868a27f32df3b8 (diff) |
changed: remove 2015-style extern crate
Diffstat (limited to '')
-rw-r--r-- | src/deploy.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/deploy.rs b/src/deploy.rs index a33721c..686c7b7 100644 --- a/src/deploy.rs +++ b/src/deploy.rs @@ -3,10 +3,10 @@ // // SPDX-License-Identifier: MPL-2.0 +use log::{debug, info}; use std::borrow::Cow; -use tokio::process::Command; - use thiserror::Error; +use tokio::process::Command; struct ActivateCommandData<'a> { sudo: &'a Option<String>, |