summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@meta.com>2023-07-08 14:32:40 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2023-07-08 14:32:40 -0700
commit0525c921dc73efe16f1d02c3c3e8acaa2719b803 (patch)
treee22bfe11a83bf6b85b00173f85e0930f9dafb68f
parenteba5bc32f0d61c5a145819f9271dcd62189535a4 (diff)
Update syn from 2.0.16 to 2.0.23
Summary: This supports new syntax added in the past months, including `c"..."` CStr literals. Reviewed By: shayne-fletcher Differential Revision: D47316927 fbshipit-source-id: ac0e514ca89dad282e64decd01d3a94b3bff8490
-rw-r--r--below/below_derive/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/below/below_derive/Cargo.toml b/below/below_derive/Cargo.toml
index ce38caf2..bc1c97d2 100644
--- a/below/below_derive/Cargo.toml
+++ b/below/below_derive/Cargo.toml
@@ -15,6 +15,6 @@ doctest = false
proc-macro = true
[dependencies]
-proc-macro2 = { version = "1.0.46", features = ["span-locations"] }
-quote = "1.0"
+proc-macro2 = { version = "1.0.63", features = ["span-locations"] }
+quote = "1.0.29"
syn = { version = "1.0.102", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }