aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-05-15 23:36:50 -0700
committerHaibo Huang <hhb@google.com>2020-05-15 23:36:50 -0700
commit548c6a34835dd62b4f3dfee7b6a09194ad924bd6 (patch)
treeb2fe033e659be887071f4143958b76fabf563450 /Cargo.toml
parent304b615e15a5f576a05a97708b502f0e83a417d0 (diff)
downloadplatform_external_rust_crates_syn-548c6a34835dd62b4f3dfee7b6a09194ad924bd6.tar.gz
platform_external_rust_crates_syn-548c6a34835dd62b4f3dfee7b6a09194ad924bd6.tar.bz2
platform_external_rust_crates_syn-548c6a34835dd62b4f3dfee7b6a09194ad924bd6.zip
Upgrade rust/crates/syn to 1.0.22
Test: None Change-Id: Icb173886fa6b0ea21560d851ae40ca4897c27f4e
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 98e4b7e1..b9f3a1da 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,7 +13,7 @@
[package]
edition = "2018"
name = "syn"
-version = "1.0.21"
+version = "1.0.22"
authors = ["David Tolnay <dtolnay@gmail.com>"]
include = ["/benches/**", "/build.rs", "/Cargo.toml", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md", "/src/**", "/tests/**"]
description = "Parser for Rust source code"
@@ -38,7 +38,7 @@ required-features = ["full", "parsing"]
name = "file"
required-features = ["full", "parsing"]
[dependencies.proc-macro2]
-version = "1.0.7"
+version = "1.0.13"
default-features = false
[dependencies.quote]
@@ -70,6 +70,9 @@ version = "1.0"
version = "0.10"
features = ["blocking"]
+[dev-dependencies.syn-test-suite]
+version = "0"
+
[dev-dependencies.tar]
version = "0.4"
@@ -89,5 +92,6 @@ full = []
parsing = []
printing = ["quote"]
proc-macro = ["proc-macro2/proc-macro", "quote/proc-macro"]
+test = ["syn-test-suite/all-features"]
visit = []
visit-mut = []