diff options
author | Anthony Ramine <nox@nox.paris> | 2019-09-27 11:55:38 +0200 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2019-09-27 11:55:38 +0200 |
commit | 423cb124ba5c1108d78f48eead95e865ccb02a29 (patch) | |
tree | 3f833e39c9a215e2fc80e55eb18801921f92e680 /components/derive_common | |
parent | 049527872e6dfadf3f69f0f9fa6fffee520a6f7b (diff) | |
download | servo-423cb124ba5c1108d78f48eead95e865ccb02a29.tar.gz servo-423cb124ba5c1108d78f48eead95e865ccb02a29.zip |
Restrict syn features for in-tree components
Diffstat (limited to 'components/derive_common')
-rw-r--r-- | components/derive_common/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/derive_common/Cargo.toml b/components/derive_common/Cargo.toml index a9b478ecd5b..bf0bb9a9014 100644 --- a/components/derive_common/Cargo.toml +++ b/components/derive_common/Cargo.toml @@ -12,5 +12,5 @@ path = "lib.rs" darling = "0.9" proc-macro2 = "0.4" quote = "0.6" -syn = { version = "0.15", features = ["visit"] } +syn = { version = "0.15", default-features = false, features = ["clone-impls", "parsing"] } synstructure = "0.10" |