cbindgen/Cargo.toml
Josh Stone de6c08c057 Bump to serde_derive 1.0.58
This will in turn build with `syn 0.13` and `quote 0.5`, which is still
distinct from cbindgen's own dependencies, so it won't get "infected" by
the proc-macro feature.
2018-10-01 16:49:06 -05:00

43 lines
1.1 KiB
TOML

[package]
name = "cbindgen"
version = "0.6.3"
authors = ["Jeff Muizelaar <jmuizelaar@mozilla.com>",
"Kartikaya Gupta <kats@mozilla.com>",
"Ryan Hunt <rhunt@eqrion.net>"]
license = "MPL-2.0"
description = "A tool for generating C bindings to Rust code."
keywords = ["bindings", "ffi", "code-generation"]
categories = ["external-ffi-bindings", "development-tools::ffi"]
repository = "https://github.com/eqrion/cbindgen/"
exclude = ["test.py", "tests/**"]
[badges]
travis-ci = { repository = "eqrion/cbindgen" }
[dependencies]
clap = "2"
log = "0.4"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
tempfile = "3.0"
toml = "0.4"
# Workaround for #147 -- use a version that depends on different syn, quote, and
# proc-macro2 than we do, so their use of proc-macro doesn't infect our binary.
[dependencies.serde_derive]
version = "=1.0.58"
[dependencies.syn]
version = "0.14.0"
default-features = false
features = ["clone-impls", "derive", "extra-traits", "full", "parsing", "printing"]
[[bin]]
name = "cbindgen"
path = "src/main.rs"
doc = false
[lib]
name = "cbindgen"
path = "src/lib.rs"