diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:39:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-18 05:39:07 +0000 |
commit | af6b8ed095f88f1df2116cdc7a9d44872cfa6074 (patch) | |
tree | 1f2df671c1f8033d5ed83f056167a0911f8d2a57 /Cargo.toml | |
parent | Initial commit. (diff) | |
download | rust-cbindgen-af6b8ed095f88f1df2116cdc7a9d44872cfa6074.tar.xz rust-cbindgen-af6b8ed095f88f1df2116cdc7a9d44872cfa6074.zip |
Adding upstream version 0.26.0.upstream/0.26.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..84864cd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,97 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2018" +rust-version = "1.64" +name = "cbindgen" +version = "0.26.0" +authors = [ + "Emilio Cobos Álvarez <emilio@crisal.io>", + "Jeff Muizelaar <jmuizelaar@mozilla.com>", + "Kartikaya Gupta <kats@mozilla.com>", + "Ryan Hunt <rhunt@eqrion.net>", +] +exclude = ["tests/profile.rs"] +description = "A tool for generating C bindings to Rust code." +readme = "README.md" +keywords = [ + "bindings", + "ffi", + "code-generation", +] +categories = [ + "external-ffi-bindings", + "development-tools::ffi", +] +license = "MPL-2.0" +repository = "https://github.com/mozilla/cbindgen" + +[lib] +name = "cbindgen" +path = "src/lib.rs" + +[[bin]] +name = "cbindgen" +path = "src/main.rs" +doc = false +required-features = ["clap"] + +[dependencies.clap] +version = "3.1" +optional = true + +[dependencies.heck] +version = "0.4" + +[dependencies.indexmap] +version = "1" + +[dependencies.log] +version = "0.4" + +[dependencies.proc-macro2] +version = "1.0.60" + +[dependencies.quote] +version = "1" + +[dependencies.serde] +version = "1.0.103" +features = ["derive"] +default-features = false + +[dependencies.serde_json] +version = "1.0" + +[dependencies.syn] +version = "1.0.88" +features = [ + "clone-impls", + "extra-traits", + "fold", + "full", + "parsing", + "printing", +] +default-features = false + +[dependencies.tempfile] +version = "3" + +[dependencies.toml] +version = "0.5" + +[dev-dependencies.serial_test] +version = "0.5.0" + +[features] +default = ["clap"] |