summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-01-08 01:36:14 +0000
committerGitHub <noreply@github.com>2024-01-08 01:36:14 +0000
commit9d9437a4b9822d525c3c7ba49c313cefae027dc0 (patch)
treece89114402d361e6e6edd40d3e8fd5a079d2905a
parent48e5ad6cc62fe498a73f8a7ece9580d0b68aeee2 (diff)
chore(deps): bump termion from 2.0.1 to 3.0.0dependabot/cargo/termion-3.0.0
Bumps termion from 2.0.1 to 3.0.0. --- updated-dependencies: - dependency-name: termion dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock47
-rw-r--r--systeroid-tui/Cargo.toml2
2 files changed, 39 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bf8afaa..d73dfea 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -577,6 +577,17 @@ dependencies = [
]
[[package]]
+name = "libredox"
+version = "0.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3af92c55d7d839293953fcd0fda5ecfe93297cfde6ffbdec13b41d99c0ba6607"
+dependencies = [
+ "bitflags 2.3.3",
+ "libc",
+ "redox_syscall 0.4.1",
+]
+
+[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -829,7 +840,7 @@ dependencies = [
"itertools",
"paste",
"strum",
- "termion",
+ "termion 2.0.3",
"unicode-segmentation",
"unicode-width",
]
@@ -873,15 +884,21 @@ dependencies = [
]
[[package]]
-name = "redox_termios"
-version = "0.1.2"
+name = "redox_syscall"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
+checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
- "redox_syscall 0.2.16",
+ "bitflags 1.3.2",
]
[[package]]
+name = "redox_termios"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "20145670ba436b55d91fc92d25e71160fbfbdd57831631c8d7d36377a476f1cb"
+
+[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1136,7 +1153,7 @@ dependencies = [
"log",
"ratatui",
"systeroid-core",
- "termion",
+ "termion 3.0.0",
"thiserror",
"tui-logger",
"unicode-width",
@@ -1153,13 +1170,25 @@ dependencies = [
[[package]]
name = "termion"
-version = "2.0.1"
+version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "659c1f379f3408c7e5e84c7d0da6d93404e3800b6b9d063ba24436419302ec90"
+checksum = "c4648c7def6f2043b2568617b9f9b75eae88ca185dbc1f1fda30e95a85d49d7d"
dependencies = [
"libc",
+ "libredox",
+ "numtoa",
+ "redox_termios",
+]
+
+[[package]]
+name = "termion"
+version = "3.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "417813675a504dfbbf21bfde32c03e5bf9f2413999962b479023c02848c1c7a5"
+dependencies = [
+ "libc",
+ "libredox",
"numtoa",
- "redox_syscall 0.2.16",
"redox_termios",
]
diff --git a/systeroid-tui/Cargo.toml b/systeroid-tui/Cargo.toml
index 4db6267..fd21adf 100644
--- a/systeroid-tui/Cargo.toml
+++ b/systeroid-tui/Cargo.toml
@@ -18,7 +18,7 @@ default = ["clipboard"]
clipboard = ["copypasta-ext"]
[dependencies]
-termion = "2.0.1"
+termion = "3.0.0"
unicode-width = "0.1.11"
thiserror = "1.0.49"
getopts = "0.2.21"