aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-12-13 12:17:50 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-12-13 12:17:50 +0000
commit06cd9cc00b34ac43d0e8a661ed8f42431c660561 (patch)
tree74bf2e3a57d2dc0ac24cbb6cf272f1a8abc4d73d /Cargo.toml.orig
parent3a9fec4a4a337b7a6055f94641b39f8e57e781b8 (diff)
parenta6df3a8724f4dc931cdd562ae45916e195ea07ad (diff)
downloadbindgen-cli-06cd9cc00b34ac43d0e8a661ed8f42431c660561.tar.gz
Merge "Upgrade bindgen-cli to 0.69.1" into main am: a6df3a8724
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/bindgen-cli/+/2838659 Change-Id: I201a192418580e046c29f22dccc4b1892e8bde89 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig22
1 files changed, 18 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 731f1be..2738952 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -11,7 +11,7 @@ readme = "../README.md"
repository = "https://github.com/rust-lang/rust-bindgen"
documentation = "https://docs.rs/bindgen"
homepage = "https://rust-lang.github.io/rust-bindgen/"
-version = "0.65.1"
+version = "0.69.1"
edition = "2018"
rust-version = "1.64.0"
@@ -20,16 +20,30 @@ path = "main.rs"
name = "bindgen"
[dependencies]
-bindgen = { path = "../bindgen", version = "=0.65.1", features = ["__cli", "experimental"] }
-shlex = "1"
+bindgen = { path = "../bindgen", version = "=0.69.1", default-features = false, features = ["__cli", "experimental"] }
clap = { version = "4", features = ["derive"] }
+clap_complete = "4"
env_logger = { version = "0.10.0", optional = true }
log = { version = "0.4", optional = true }
+shlex = "1"
[features]
default = ["logging", "runtime", "which-rustfmt"]
-logging = ["bindgen/logging", "env_logger", "log"]
+logging = ["bindgen/logging", "dep:env_logger", "dep:log"]
static = ["bindgen/static"]
runtime = ["bindgen/runtime"]
# Dynamically discover a `rustfmt` binary using the `which` crate
which-rustfmt = ["bindgen/which-rustfmt"]
+
+## The following features are for internal use and they shouldn't be used if
+## you're not hacking on bindgen
+# Features used for CI testing
+__testing_only_extra_assertions = ["bindgen/__testing_only_extra_assertions"]
+__testing_only_libclang_9 = ["bindgen/__testing_only_libclang_9"]
+__testing_only_libclang_5 = ["bindgen/__testing_only_libclang_5"]
+
+[package.metadata.release]
+release = true
+
+[package.metadata.dist]
+dist = true