Codebase list rust-stfu8 / de3e0af
uucore: new upstream release Sylvestre Ledru 4 years ago
5 changed file(s) with 59 addition(s) and 27 deletion(s). Raw diff Collapse all Expand all
0 Index: starship/Cargo.toml
1 ===================================================================
2 --- starship.orig/Cargo.toml
3 +++ starship/Cargo.toml
4 @@ -40,10 +40,6 @@ features = ["tls", "form"]
5 optional = true
6 default-features = false
7
8 -[dependencies.battery]
9 -version = "0.7.5"
10 -optional = true
11 -
12 [dependencies.byte-unit]
13 version = "3.0.3"
14
15 @@ -131,7 +127,7 @@ version = "0.5.2"
16 version = "3.1.0"
17
18 [features]
19 -default = ["battery", "http"]
20 +#default = ["battery", "http"]
21 http = ["attohttpc"]
22 tls-vendored = ["native-tls/vendored"]
23 [badges.is-it-maintained-issue-resolution]
0 rust-uucore (0.0.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-uucore (0.0.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Package uucore 0.0.1 from crates.io using debcargo 2.4.0
2 * Package uucore 0.0.2 from crates.io using debcargo 2.4.2
33
4 -- Sylvestre Ledru <sylvestre@debian.org> Fri, 03 Jan 2020 09:06:15 +0100
4 -- Sylvestre Ledru <sylvestre@debian.org> Wed, 22 Apr 2020 12:10:49 +0200
0 Index: uucore/Cargo.toml
1 ===================================================================
2 --- uucore.orig/Cargo.toml
3 +++ uucore/Cargo.toml
4 @@ -28,9 +28,6 @@ version = ">= 0.3.3, <= 0.3.30"
5 version = "~2.1"
6 optional = true
7
8 -[dependencies.dunce]
9 -version = "1.0.0"
10 -
11 [dependencies.failure]
12 version = "<= 0.1.1"
13 optional = true
14 Index: uucore/src/fs.rs
15 ===================================================================
16 --- uucore.orig/src/fs.rs
17 +++ uucore/src/fs.rs
18 @@ -6,8 +6,6 @@
19 // For the full copyright and license information, please view the LICENSE
20 // file that was distributed with this source code.
21
22 -#[cfg(windows)]
23 -extern crate dunce;
24 #[cfg(target_os = "redox")]
25 extern crate termion;
26
27 @@ -102,9 +100,10 @@ pub fn canonicalize<P: AsRef<Path>>(orig
28 let original = original.as_ref();
29 let original = if original.is_absolute() {
30 original.to_path_buf()
31 - } else {
32 - dunce::canonicalize(env::current_dir().unwrap()).unwrap().join(original)
33 - };
34 + } // windows specific
35 + // else {
36 + // dunce::canonicalize(env::current_dir().unwrap()).unwrap().join(original)
37 + //};
38
39 let mut result = PathBuf::new();
40 let mut parts = vec![];
0 disable-dunce.diff
1 update-dep.diff
0 Index: uucore/Cargo.toml
1 ===================================================================
2 --- uucore.orig/Cargo.toml
3 +++ uucore/Cargo.toml
4 @@ -22,7 +22,7 @@ categories = ["os"]
5 license = "MIT"
6 repository = "https://github.com/uutils/uucore"
7 [dependencies.backtrace]
8 -version = ">= 0.3.3, <= 0.3.30"
9 +version = ">= 0.3.3"
10
11 [dependencies.data-encoding]
12 version = "~2.1"