aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 07ad1a9a2ea471e95e2b25b9aeb84c22776671b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 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.0"
name = "bindgen-cli"
version = "0.69.1"
authors = ["The rust-bindgen project contributors"]
description = "Automatically generates Rust FFI bindings to C and C++ libraries."
homepage = "https://rust-lang.github.io/rust-bindgen/"
documentation = "https://docs.rs/bindgen"
readme = "README.md"
keywords = [
    "bindings",
    "ffi",
    "code-generation",
]
categories = [
    "external-ffi-bindings",
    "development-tools::ffi",
]
license = "BSD-3-Clause"
repository = "https://github.com/rust-lang/rust-bindgen"

[package.metadata.dist]
dist = true

[package.metadata.release]
release = true

[[bin]]
name = "bindgen"
path = "main.rs"

[dependencies.bindgen]
version = "=0.69.1"
features = [
    "__cli",
    "experimental",
]
default-features = false

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.clap_complete]
version = "4"

[dependencies.env_logger]
version = "0.10.0"
optional = true

[dependencies.log]
version = "0.4"
optional = true

[dependencies.shlex]
version = "1"

[features]
__testing_only_extra_assertions = ["bindgen/__testing_only_extra_assertions"]
__testing_only_libclang_5 = ["bindgen/__testing_only_libclang_5"]
__testing_only_libclang_9 = ["bindgen/__testing_only_libclang_9"]
default = [
    "logging",
    "runtime",
    "which-rustfmt",
]
logging = [
    "bindgen/logging",
    "dep:env_logger",
    "dep:log",
]
runtime = ["bindgen/runtime"]
static = ["bindgen/static"]
which-rustfmt = ["bindgen/which-rustfmt"]