rm lazy_static
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@@ -1059,7 +1059,6 @@ dependencies = [
|
|||||||
"hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"hmac 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"indicatif 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"json 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
"json 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
||||||
"reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
"reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"rust_util 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rust_util 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"sequoia-openpgp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"sequoia-openpgp 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|||||||
@@ -19,5 +19,4 @@ reqwest = "0.9.22"
|
|||||||
sequoia-openpgp = "0.12.0"
|
sequoia-openpgp = "0.12.0"
|
||||||
chrono = "0.4.10"
|
chrono = "0.4.10"
|
||||||
zip = "0.5.3"
|
zip = "0.5.3"
|
||||||
lazy_static = "1.3.0"
|
|
||||||
rust_util = "0.2.1"
|
rust_util = "0.2.1"
|
||||||
|
|||||||
@@ -5,10 +5,6 @@ use argparse::{
|
|||||||
StoreTrue,
|
StoreTrue,
|
||||||
};
|
};
|
||||||
|
|
||||||
// lazy_static! {
|
|
||||||
// pub static ref IS_DEBUG: bool = rust_util::util_env::is_env_on("DEBUG");
|
|
||||||
// }
|
|
||||||
|
|
||||||
const EMPTY: &str = "";
|
const EMPTY: &str = "";
|
||||||
|
|
||||||
pub struct Options {
|
pub struct Options {
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ use hmac::{
|
|||||||
use reqwest::Response;
|
use reqwest::Response;
|
||||||
use rust_util::*;
|
use rust_util::*;
|
||||||
|
|
||||||
|
|
||||||
pub const DEFAULT_URL_VALID_IN_SECS: u64 = 1000;
|
pub const DEFAULT_URL_VALID_IN_SECS: u64 = 1000;
|
||||||
|
|
||||||
pub const OSS_VERB_GET: &str = "GET";
|
pub const OSS_VERB_GET: &str = "GET";
|
||||||
|
|||||||
Reference in New Issue
Block a user