summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Mitchell <ndmitchell@fb.com>2021-04-06 02:38:48 -0700
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2021-04-06 02:39:40 -0700
commit3a7b030876d22ff6be5fbee2f14081aefc1fd178 (patch)
treeb55f16844c029a90b25099c220c694304b49479f
parent3d965fbc110544a0ae6be70d0a957d940e8dbda6 (diff)
Make sure you have Debug for syn in starlark_modulev0.4.0
Summary: Otherwise packaging fails (which seemingly does a more precise feature enablement check). Reviewed By: cjhopman Differential Revision: D27576811 fbshipit-source-id: 9fe4b7b5519d61ff687808adcffff3c55c2d1556
-rw-r--r--starlark_module/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/starlark_module/Cargo.toml b/starlark_module/Cargo.toml
index 00254469..32464d79 100644
--- a/starlark_module/Cargo.toml
+++ b/starlark_module/Cargo.toml
@@ -13,7 +13,7 @@ proc-macro = true
[dependencies]
proc-macro2 = "1.0"
-syn = { version = "1.0.33", features = ["full"] }
+syn = { version = "1.0.33", features = ["full", "extra-traits"] }
# @oss-disable: gazebo = { path = "../../gazebo/gazebo", features = ["str_pattern_extensions"] }
gazebo = { version = "0.2.0", features = ["str_pattern_extensions"] } # @oss-enable
quote = "1.0.3"