mirror of
https://github.com/atuinsh/atuin.git
synced 2025-02-02 19:49:56 +01:00
fix(deps): replace parse_duration with humantime (#2074)
The former is no longer maintained, with a long standing security advisory (RUSTSEC-2021-0041).
This commit is contained in:
parent
83637d96b0
commit
b0b1d07cb5
60
Cargo.lock
generated
60
Cargo.lock
generated
@ -257,13 +257,13 @@ dependencies = [
|
||||
"futures",
|
||||
"generic-array",
|
||||
"hex",
|
||||
"humantime",
|
||||
"indicatif",
|
||||
"interim",
|
||||
"itertools 0.12.1",
|
||||
"log",
|
||||
"memchr",
|
||||
"minspan",
|
||||
"parse_duration",
|
||||
"pretty_assertions",
|
||||
"rand",
|
||||
"regex",
|
||||
@ -2286,31 +2286,6 @@ dependencies = [
|
||||
"windows-sys 0.48.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num"
|
||||
version = "0.2.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
|
||||
dependencies = [
|
||||
"num-bigint",
|
||||
"num-complex",
|
||||
"num-integer",
|
||||
"num-iter",
|
||||
"num-rational",
|
||||
"num-traits",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-bigint"
|
||||
version = "0.2.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"num-integer",
|
||||
"num-traits",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-bigint-dig"
|
||||
version = "0.8.4"
|
||||
@ -2328,16 +2303,6 @@ dependencies = [
|
||||
"zeroize",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-complex"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"num-traits",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-conv"
|
||||
version = "0.1.0"
|
||||
@ -2364,18 +2329,6 @@ dependencies = [
|
||||
"num-traits",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-rational"
|
||||
version = "0.2.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
|
||||
dependencies = [
|
||||
"autocfg",
|
||||
"num-bigint",
|
||||
"num-integer",
|
||||
"num-traits",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num-traits"
|
||||
version = "0.2.18"
|
||||
@ -2512,17 +2465,6 @@ dependencies = [
|
||||
"windows-targets 0.48.5",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parse_duration"
|
||||
version = "2.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7037e5e93e0172a5a96874380bf73bc6ecef022e26fa25f2be26864d6b3ba95d"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"num",
|
||||
"regex",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "password-hash"
|
||||
version = "0.5.0"
|
||||
|
@ -33,7 +33,7 @@ interim = { workspace = true }
|
||||
config = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
parse_duration = "2.1.1"
|
||||
humantime = "2.1.0"
|
||||
async-trait = { workspace = true }
|
||||
itertools = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
|
@ -9,7 +9,7 @@ use config::{
|
||||
};
|
||||
use eyre::{bail, eyre, Context, Error, Result};
|
||||
use fs_err::{create_dir_all, File};
|
||||
use parse_duration::parse;
|
||||
use humantime::parse_duration;
|
||||
use regex::RegexSet;
|
||||
use semver::Version;
|
||||
use serde::{Deserialize, Serialize};
|
||||
@ -553,7 +553,7 @@ impl Settings {
|
||||
return Ok(false);
|
||||
}
|
||||
|
||||
match parse(self.sync_frequency.as_str()) {
|
||||
match parse_duration(self.sync_frequency.as_str()) {
|
||||
Ok(d) => {
|
||||
let d = time::Duration::try_from(d).unwrap();
|
||||
Ok(OffsetDateTime::now_utc() - Settings::last_sync()? >= d)
|
||||
|
Loading…
Reference in New Issue
Block a user