File tree 4 files changed +7
-11
lines changed 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ git2-curl = "0.7"
33
33
glob = " 0.2"
34
34
hex = " 0.3"
35
35
home = " 0.3"
36
- ignore = " 0.3 "
36
+ ignore = " 0.4 "
37
37
jobserver = " 0.1.9"
38
38
lazycell = " 0.6"
39
39
libc = " 0.2"
@@ -55,10 +55,10 @@ toml = "0.4"
55
55
url = " 1.1"
56
56
57
57
[target .'cfg(target_os = "macos")' .dependencies ]
58
- core-foundation = { version = " 0.4.4 " , features = [" mac_os_10_7_support" ] }
58
+ core-foundation = { version = " 0.5.1 " , features = [" mac_os_10_7_support" ] }
59
59
60
60
[target .'cfg(windows)' .dependencies ]
61
- miow = " 0.2 "
61
+ miow = " 0.3 "
62
62
63
63
[target .'cfg(windows)' .dependencies .winapi ]
64
64
version = " 0.3"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ filetime = "0.1"
12
12
flate2 = " 1.0"
13
13
git2 = { version = " 0.6" , default-features = false }
14
14
hamcrest = " =0.1.1"
15
- hex = " 0.2 "
15
+ hex = " 0.3 "
16
16
log = " 0.4"
17
17
serde_json = " 1.0"
18
18
tar = { version = " 0.4" , default-features = false }
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::path::{PathBuf, Path};
6
6
use flate2:: Compression ;
7
7
use flate2:: write:: GzEncoder ;
8
8
use git2;
9
- use hex:: ToHex ;
9
+ use hex;
10
10
use tar:: { Builder , Header } ;
11
11
use url:: Url ;
12
12
@@ -320,5 +320,5 @@ impl Package {
320
320
pub fn cksum ( s : & [ u8 ] ) -> String {
321
321
let mut sha = Sha256 :: new ( ) ;
322
322
sha. update ( s) ;
323
- sha. finish ( ) . to_hex ( )
323
+ hex :: encode ( & sha. finish ( ) )
324
324
}
Original file line number Diff line number Diff line change @@ -330,10 +330,6 @@ See [..]
330
330
See [..]
331
331
[WARNING] [..] file `some_dir[/]dir_deep_3[/]some_dir[/]file` WILL be excluded [..]
332
332
See [..]
333
- [WARNING] [..] file `some_dir[/]dir_deep_4[/]some_dir[/]file` WILL be excluded [..]
334
- See [..]
335
- [WARNING] [..] file `some_dir[/]dir_deep_5[/]some_dir[/]file` WILL be excluded [..]
336
- See [..]
337
333
[WARNING] [..] file `some_dir[/]file_deep_1` WILL be excluded [..]
338
334
See [..]
339
335
[ARCHIVING] [..]
@@ -1003,4 +999,4 @@ Caused by:
1003
999
1004
1000
consider adding `cargo-features = [\" epoch\" ]` to the manifest
1005
1001
" ) ) ) ;
1006
- }
1002
+ }
You can’t perform that action at this time.
0 commit comments