Codebase list rust-stfu8 / 3b66063
Package synstructure 0.11.0 Nicolas Braud-Santoni 4 years ago
5 changed file(s) with 47 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 rust-synstructure (0.11.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package synstructure 0.11.0 from crates.io using debcargo 2.2.10
4
5 -- Nicolas Braud-Santoni <nicoo@debian.org> Wed, 14 Aug 2019 19:15:10 +0200
6
07 rust-synstructure (0.10.1-1) unstable; urgency=medium
18
29 * Team upload.
88
99 Files: debian/*
1010 Copyright:
11 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2018 Ximin Luo <infinity0@debian.org>
11 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2018-2019 Ximin Luo <infinity0@debian.org>
1313 License: MIT
1414
1515 License: MIT
2020
2121 Files: debian/*
2222 Copyright:
23 2018 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018 Ximin Luo <infinity0@debian.org>
23 2018-2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2018-2019 Ximin Luo <infinity0@debian.org>
2525 License: MIT
2626
2727 License: MIT
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;
32 extern_crate = quote! { extern crate #seg; };
33 }
34 }
0 relax-dependencies.patch