From e47119ca2fa337fa585b6079e022f7d221e320b9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 7 May 2020 15:50:33 -0700 Subject: [PATCH] Pull in syn 1.0.19 Includes https://github.com/dtolnay/syn/pull/790 which we need for extern type aliases. --- gen/build/Cargo.toml | 2 +- gen/cmd/Cargo.toml | 2 +- macro/Cargo.toml | 2 +- third-party/BUCK | 2 +- third-party/BUILD | 2 +- third-party/Cargo.lock | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gen/build/Cargo.toml b/gen/build/Cargo.toml index 1cbcced59..16aeba3d1 100644 --- a/gen/build/Cargo.toml +++ b/gen/build/Cargo.toml @@ -13,7 +13,7 @@ cc = "1.0.49" codespan-reporting = "0.9" proc-macro2 = { version = "1.0.12", features = ["span-locations"] } quote = "1.0" -syn = { version = "1.0", features = ["full"] } +syn = { version = "1.0.19", features = ["full"] } [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/gen/cmd/Cargo.toml b/gen/cmd/Cargo.toml index 57f2e39c7..92adb89f2 100644 --- a/gen/cmd/Cargo.toml +++ b/gen/cmd/Cargo.toml @@ -17,7 +17,7 @@ codespan-reporting = "0.9" proc-macro2 = { version = "1.0.12", features = ["span-locations"] } quote = "1.0" structopt = "0.3" -syn = { version = "1.0", features = ["full"] } +syn = { version = "1.0.19", features = ["full"] } [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 18b46e52b..8ade852f2 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -14,7 +14,7 @@ proc-macro = true [dependencies] proc-macro2 = "1.0" quote = "1.0.4" -syn = { version = "1.0", features = ["full"] } +syn = { version = "1.0.19", features = ["full"] } [dev-dependencies] cxx = { version = "0.3", path = ".." } diff --git a/third-party/BUCK b/third-party/BUCK index 2de784b2d..e16bad297 100644 --- a/third-party/BUCK +++ b/third-party/BUCK @@ -131,7 +131,7 @@ rust_library( rust_library( name = "syn", - srcs = glob(["vendor/syn-1.0.18/src/**"]), + srcs = glob(["vendor/syn-1.0.19/src/**"]), visibility = ["PUBLIC"], features = [ "clone-impls", diff --git a/third-party/BUILD b/third-party/BUILD index 4d8fd9f95..45b1163c4 100644 --- a/third-party/BUILD +++ b/third-party/BUILD @@ -136,7 +136,7 @@ rust_library( rust_library( name = "syn", - srcs = glob(["vendor/syn-1.0.18/src/**"]), + srcs = glob(["vendor/syn-1.0.19/src/**"]), crate_features = [ "clone-impls", "derive", diff --git a/third-party/Cargo.lock b/third-party/Cargo.lock index 3397192f5..231863d97 100644 --- a/third-party/Cargo.lock +++ b/third-party/Cargo.lock @@ -307,9 +307,9 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "410a7488c0a728c7ceb4ad59b9567eb4053d02e8cc7f5c0e0eeeb39518369213" +checksum = "e8e5aa70697bb26ee62214ae3288465ecec0000f05182f039b477001f08f5ae7" dependencies = [ "proc-macro2", "quote",