Codebase list rust-libslirp / a57301d
rustyline: update version kpcyrd 3 years ago
4 changed file(s) with 48 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 rust-rustyline (6.3.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package rustyline 6.3.0 from crates.io using debcargo 2.4.3
3
4 -- kpcyrd <git@rxv.cc> Tue, 06 Oct 2020 03:46:06 +0200
5
06 rust-rustyline (6.0.0-1) unstable; urgency=medium
17
28 * Package rustyline 6.0.0 from crates.io using debcargo 2.4.2
0 diff --git a/src/completion.rs b/src/completion.rs
1 index 201a0d1..13d55b9 100644
2 --- a/src/completion.rs
3 +++ b/src/completion.rs
4 @@ -309,7 +309,7 @@ fn filename_complete(
5 quote: Quote,
6 ) -> Result<Vec<Pair>> {
7 #[cfg(feature = "with-dirs")]
8 - use dirs_next::home_dir;
9 + use dirs::home_dir;
10 use std::env::current_dir;
11
12 let sep = path::MAIN_SEPARATOR;
00 --- a/Cargo.toml
11 +++ b/Cargo.toml
2 @@ -61,7 +61,7 @@
2 @@ -30,8 +30,8 @@
3 [dependencies.cfg-if]
4 version = "0.1.6"
5
6 -[dependencies.dirs-next]
7 -version = "1.0"
8 +[dependencies.dirs]
9 +version = "3.0"
10 optional = true
11
12 [dependencies.libc]
13 @@ -65,17 +65,13 @@
14
15 [features]
316 default = ["with-dirs"]
4 with-dirs = ["dirs"]
17 -with-dirs = ["dirs-next"]
18 -with-fuzzy = ["skim"]
19 +with-dirs = ["dirs"]
20 +with-fuzzy = []
521 [target."cfg(unix)".dependencies.nix]
6 -version = "0.14"
22 -version = "0.18"
23 -
24 -[target."cfg(unix)".dependencies.skim]
25 -version = "0.7"
26 -optional = true
727 +version = "0.16"
828
929 [target."cfg(unix)".dependencies.utf8parse]
10 version = "0.1"
30 -version = "0.2"
31 +version = "0.1"
32 [target."cfg(windows)".dependencies.scopeguard]
33 version = "1.1"
34
00 relax-deps.patch
1 patch-dirs-next.patch