Codebase list rust-serde-xml-rs / dc559cf
Update core-foundation for uuid 0.7 Ximin Luo 5 years ago
3 changed file(s) with 30 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-core-foundation (0.6.3-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package core-foundation 0.6.3 from crates.io using debcargo 2.2.9
3 * Patch to work with uuid 0.7.
4
5 -- Ximin Luo <infinity0@debian.org> Tue, 18 Dec 2018 19:24:53 -0800
6
07 rust-core-foundation (0.6.3-1) unstable; urgency=medium
18
29 * Package core-foundation 0.6.3 from crates.io using debcargo 2.2.9
00 0001-Use-libc-c_char-instead-of-i8-for-libc-calls.patch
1 update-dep-uuid-version.patch
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -29,7 +29,7 @@
3 version = "0.2"
4
5 [dependencies.uuid]
6 -version = "0.5"
7 +version = "0.7"
8 optional = true
9
10 [features]
11 --- a/src/uuid.rs
12 +++ b/src/uuid.rs
13 @@ -62,7 +62,7 @@
14 b.byte14,
15 b.byte15,
16 ];
17 - Uuid::from_bytes(&bytes).unwrap()
18 + Uuid::from_slice(&bytes).unwrap()
19 }
20 }
21