summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-08-02 02:40:58 +0000
committerGitHub <noreply@github.com>2024-08-02 02:40:58 +0000
commit9a66b245e76ef38a733258b526de6fdeb222fb76 (patch)
tree42fe86684e61bbc7b9d7caec30c2386437c460f4
parent61e52d9bfa7bb455eaeecd6df2bf3fccd26608c2 (diff)
Bump crossterm from 0.27.0 to 0.28.1dependabot/cargo/crossterm-0.28.1
Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.27.0 to 0.28.1. - [Release notes](https://github.com/crossterm-rs/crossterm/releases) - [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossterm-rs/crossterm/commits) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock52
-rw-r--r--Cargo.toml2
2 files changed, 45 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2990cf9b..80592cbf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -587,8 +587,24 @@ dependencies = [
"bitflags 2.6.0",
"crossterm_winapi",
"libc",
- "mio",
+ "mio 0.8.11",
"parking_lot",
+ "signal-hook",
+ "signal-hook-mio",
+ "winapi",
+]
+
+[[package]]
+name = "crossterm"
+version = "0.28.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
+dependencies = [
+ "bitflags 2.6.0",
+ "crossterm_winapi",
+ "mio 1.0.1",
+ "parking_lot",
+ "rustix",
"serde",
"signal-hook",
"signal-hook-mio",
@@ -1129,7 +1145,7 @@ dependencies = [
"chrono",
"clap",
"crossbeam-channel",
- "crossterm",
+ "crossterm 0.28.1",
"dirs",
"easy-cast",
"env_logger",
@@ -1698,6 +1714,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
+name = "hermit-abi"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
+
+[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2016,6 +2038,19 @@ dependencies = [
]
[[package]]
+name = "mio"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
+dependencies = [
+ "hermit-abi",
+ "libc",
+ "log",
+ "wasi",
+ "windows-sys 0.52.0",
+]
+
+[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2029,7 +2064,7 @@ dependencies = [
"kqueue",
"libc",
"log",
- "mio",
+ "mio 0.8.11",
"walkdir",
"windows-sys 0.48.0",
]
@@ -2448,7 +2483,7 @@ dependencies = [
"bitflags 2.6.0",
"cassowary",
"compact_str",
- "crossterm",
+ "crossterm 0.27.0",
"itertools",
"lru",
"paste",
@@ -2791,12 +2826,13 @@ dependencies = [
[[package]]
name = "signal-hook-mio"
-version = "0.2.3"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
+checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
dependencies = [
"libc",
- "mio",
+ "mio 0.8.11",
+ "mio 1.0.1",
"signal-hook",
]
@@ -3125,7 +3161,7 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d8b352f15e70a6b6b450dc89f5d737f45b6f9d6bc0c2503b3d55dcb1d0c8553"
dependencies = [
- "crossterm",
+ "crossterm 0.27.0",
"ratatui",
"unicode-width",
]
diff --git a/Cargo.toml b/Cargo.toml
index 8060abf1..88ca3686 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -25,7 +25,7 @@ bytesize = { version = "1.3", default-features = false }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4.5", features = ["env", "cargo"] }
crossbeam-channel = "0.5"
-crossterm = { version = "0.27", features = ["serde"] }
+crossterm = { version = "0.28", features = ["serde"] }
dirs = "5.0"
easy-cast = "0.5"
filetreelist = { path = "./filetreelist", version = "0.5" }