Bump to standalone-syn 0.13.0
Fixes #137. standalone-syn 0.13.0 contains the deferred PR dtolnay/syn#363 which allows turning off the "proc-macro" feature. This is the desired approach to fixing the dylib dependency problem, and allows cbindgen to once again be buildable by the release rustc compiler.
... | ... | @@ -23,8 +23,9 @@ tempdir = "0.3" |
toml = "0.4" | ||
[dependencies.standalone-syn] | ||
version = "0.12.10" | ||
features = ["extra-traits", "full"] | ||
version = "0.13.0" | ||
default-features = false | ||
features = ["clone-impls", "derive", "extra-traits", "full", "parsing", "printing"] | ||
[[bin]] | ||
name = "cbindgen" | ||
... | ... |
Please register or sign in to comment