mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
Remove dependency to time crate (#591)
* Bump time from 0.3.15 to 0.3.36 Bumps [time](https://github.com/time-rs/time) from 0.3.15 to 0.3.36. - [Release notes](https://github.com/time-rs/time/releases) - [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) - [Commits](https://github.com/time-rs/time/compare/v0.3.15...v0.3.36) --- updated-dependencies: - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore: remove time from deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: LoricAndre <loric.andre@pm.me> Co-authored-by: LoricAndre <57358788+LoricAndre@users.noreply.github.com>
This commit is contained in:
parent
17c38c54e2
commit
8222a3f7d2
22
Cargo.lock
generated
22
Cargo.lock
generated
|
|
@ -95,7 +95,7 @@ dependencies = [
|
|||
"js-sys",
|
||||
"num-integer",
|
||||
"num-traits",
|
||||
"time 0.1.44",
|
||||
"time",
|
||||
"wasm-bindgen",
|
||||
"winapi",
|
||||
]
|
||||
|
|
@ -558,15 +558,6 @@ dependencies = [
|
|||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "num_threads"
|
||||
version = "0.1.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.15.0"
|
||||
|
|
@ -714,7 +705,6 @@ dependencies = [
|
|||
"rayon",
|
||||
"regex",
|
||||
"shlex",
|
||||
"time 0.3.15",
|
||||
"timer",
|
||||
"tuikit",
|
||||
"unicode-width 0.2.0",
|
||||
|
|
@ -821,16 +811,6 @@ dependencies = [
|
|||
"winapi",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "time"
|
||||
version = "0.3.15"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"num_threads",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "timer"
|
||||
version = "0.2.0"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ shlex = { version = "1.3.0", optional = true }
|
|||
unicode-width = "0.2.0"
|
||||
log = "0.4.22"
|
||||
env_logger = { version = "0.9.0", optional = true }
|
||||
time = "0.3.13"
|
||||
clap = { version = "3.2.22", optional = true, features = ["cargo"] }
|
||||
tuikit = "0.5.0"
|
||||
vte = "0.13.0"
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ extern crate log;
|
|||
extern crate atty;
|
||||
extern crate shlex;
|
||||
extern crate skim;
|
||||
extern crate time;
|
||||
|
||||
use derive_builder::Builder;
|
||||
use std::env;
|
||||
|
|
|
|||
Loading…
Reference in a new issue