Codebase list rust-libslirp / 43101e8
Update synstructure to 0.12.2 Wolfgang Silbermayr 4 years ago
6 changed file(s) with 14 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
0 rust-synstructure (0.12.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package synstructure 0.12.2 from crates.io using debcargo 2.4.0
3 * Remove obsolete dependency version relax patch
4
5 -- Wolfgang Silbermayr <wolfgang@silbermayr.at> Sat, 9 Nov 2019 10:28:56 +0100
6
07 rust-synstructure (0.11.0-2) unstable; urgency=medium
18
29 * Package synstructure 0.11.0 from crates.io using debcargo 2.4.0
33 Source: https://github.com/mystor/synstructure
44
55 Files: *
6 Copyright: 2016-2018 Nika Layzell <nika@thelayzells.com>
6 Copyright: 2016-2019 Nika Layzell <nika@thelayzells.com>
77 License: MIT
88
99 Files: debian/*
1010 Copyright:
1111 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
1212 2018-2019 Ximin Luo <infinity0@debian.org>
13 2018-2019 Wolfgang Silbermayr <wolfgang@silbermayr.at>
1314 License: MIT
1415
1516 License: MIT
2222 Copyright:
2323 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
2424 2018-2019 Ximin Luo <infinity0@debian.org>
25 2018-2019 Wolfgang Silbermayr <wolfgang@silbermayr.at>
2526 License: MIT
2627
2728 License: MIT
00 overlay = "."
1 uploaders = ["Ximin Luo <infinity0@debian.org>"]
1 uploaders = [
2 "Ximin Luo <infinity0@debian.org>",
3 "Wolfgang Silbermayr <wolfgang@silbermayr.at>",
4 ]
+0
-35
src/synstructure/debian/patches/relax-dependencies.patch less more
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -22,17 +22,17 @@
3 license = "MIT"
4 repository = "https://github.com/mystor/synstructure"
5 [dependencies.proc-macro2]
6 -version = "0.4"
7 +version = "1"
8
9 [dependencies.quote]
10 -version = "0.6"
11 +version = "1"
12
13 [dependencies.syn]
14 -version = "0.15"
15 +version = "1"
16 features = ["visit", "extra-traits"]
17
18 [dependencies.unicode-xid]
19 -version = "0.1"
20 +version = "0.2"
21 [dev-dependencies.synstructure_test_traits]
22 version = "0.1"
23
24 --- a/src/lib.rs
25 +++ b/src/lib.rs
26 @@ -2059,7 +2059,7 @@
27 let mut extern_crate = quote!();
28 if bound.path.leading_colon.is_none() {
29 if let Some(ref seg) = bound.path.segments.first() {
30 - let seg = seg.value();
31 + let seg = &seg.ident;
32 extern_crate = quote! { extern crate #seg; };
33 }
34 }
+0
-1
src/synstructure/debian/patches/series less more
0 relax-dependencies.patch