Codebase list rust-subtle / fecfb10
Update html5ever kpcyrd 4 years ago
4 changed file(s) with 54 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 rust-html5ever (0.23.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-html5ever (0.24.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Package html5ever 0.23.0 from crates.io using debcargo 2.2.10
2 * Package html5ever 0.24.0 from crates.io using debcargo 2.4.0
33
4 -- kpcyrd <git@rxv.cc> Thu, 11 Jul 2019 13:52:00 +0000
4 -- kpcyrd <git@rxv.cc> Mon, 9 Sep 2019 02:42:52 +0200
55
66 rust-html5ever (0.22.5-1) unstable; urgency=medium
77
0 From 38e0dec90936dfbcd90420bb36ac5a69b2ab3477 Mon Sep 17 00:00:00 2001
1 From: Bastien Orivel <eijebong@bananium.fr>
2 Date: Tue, 13 Aug 2019 19:32:09 +0200
3 Subject: [PATCH] Update syn related crates to 1.0 and bump version
4
5 ---
6 html5ever/Cargo.toml | 8 ++++----
7 html5ever/macros/match_token.rs | 4 ++--
8 2 files changed, 6 insertions(+), 6 deletions(-)
9
10 diff --git a/html5ever/macros/match_token.rs b/html5ever/macros/match_token.rs
11 index 8671841..b434de7 100644
12 --- a/macros/match_token.rs
13 +++ b/macros/match_token.rs
14 @@ -421,7 +421,7 @@ impl Fold for MatchTokenParser {
15 if mac.path == parse_quote!(match_token) {
16 return syn::fold::fold_stmt(
17 self,
18 - syn::Stmt::Expr(expand_match_token(&mac.tts)),
19 + syn::Stmt::Expr(expand_match_token(&mac.tokens)),
20 );
21 }
22 },
23 @@ -435,7 +435,7 @@ impl Fold for MatchTokenParser {
24 match expr {
25 syn::Expr::Macro(syn::ExprMacro { ref mac, .. }) => {
26 if mac.path == parse_quote!(match_token) {
27 - return syn::fold::fold_expr(self, expand_match_token(&mac.tts));
28 + return syn::fold::fold_expr(self, expand_match_token(&mac.tokens));
29 }
30 },
31 _ => {},
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -59,11 +59,11 @@
3 [dev-dependencies.typed-arena]
4 version = "1.3.0"
5 [build-dependencies.proc-macro2]
6 -version = "0.4"
7 +version = "1.0"
8
9 [build-dependencies.quote]
10 -version = "0.6"
11 +version = "1.0"
12
13 [build-dependencies.syn]
14 -version = "0.15"
15 +version = "1.0"
16 features = ["extra-traits", "full", "fold"]
0 relax-deps.patch
1 proc-macro2.patch