mirror of
https://github.com/denisidoro/navi.git
synced 2026-01-23 02:14:19 +00:00
Merge pull request #931 from paolobarbolini/ancient-dependencies
Upgrade dependencies
This commit is contained in:
commit
7cbfb7eb18
4 changed files with 499 additions and 491 deletions
974
Cargo.lock
generated
974
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
12
Cargo.toml
12
Cargo.toml
|
|
@ -24,16 +24,16 @@ regex = { version = "1.7.3", default-features = false, features = [
|
|||
"unicode-perl",
|
||||
] }
|
||||
clap = { version = "4.2.1", features = ["derive", "cargo"] }
|
||||
crossterm = "0.26.1"
|
||||
crossterm = "0.28.0"
|
||||
lazy_static = "1.4.0"
|
||||
etcetera = "0.7.1"
|
||||
etcetera = "0.8.0"
|
||||
walkdir = "2.3.3"
|
||||
shellwords = "1.1.0"
|
||||
anyhow = "1.0.70"
|
||||
thiserror = "1.0.40"
|
||||
strip-ansi-escapes = "0.1.1"
|
||||
thiserror = "2.0.0"
|
||||
strip-ansi-escapes = "0.2.0"
|
||||
edit = "0.1.4"
|
||||
remove_dir_all = "0.8.2"
|
||||
remove_dir_all = "1.0.0"
|
||||
serde = { version = "1.0.159", features = ["derive"] }
|
||||
serde_yaml = "0.9.21"
|
||||
dns_common_derive = { version = "0.2.1" }
|
||||
|
|
@ -41,7 +41,7 @@ dns_common = { version = "0.2.1", default-features = false, features = [
|
|||
"yaml",
|
||||
"json",
|
||||
] }
|
||||
unicode-width = "0.1.10"
|
||||
unicode-width = "0.2.0"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
dunce = "1"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
[toolchain]
|
||||
channel = "1.74.0"
|
||||
channel = "1.81.0"
|
||||
components = [ "rustfmt", "clippy" ]
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ Make sure wget is correctly installed.";
|
|||
|
||||
if let Some(0) = out.status.code() {
|
||||
let stdout = out.stdout;
|
||||
let plain_bytes = strip_ansi_escapes::strip(stdout)?;
|
||||
let plain_bytes = strip_ansi_escapes::strip(stdout);
|
||||
|
||||
let markdown = String::from_utf8(plain_bytes).context("Output is invalid utf8")?;
|
||||
if markdown.starts_with("Unknown topic.") {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue