forked from rust-lang/rust-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1017 Bytes
/
Cargo.toml
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
[package]
authors = ["Jyun-Yan You <[email protected]>"]
description = "A binding generator for Rust"
documentation = "https://crabtw.github.io/rust-bindgen/bindgen/index.html"
homepage = "https://github.com/crabtw/rust-bindgen"
keywords = ["bindings", "ffi", "code-generation"]
license = "BSD-3-Clause"
name = "bindgen"
readme = "README.md"
repository = "https://github.com/crabtw/rust-bindgen"
version = "0.19.0"
[[bin]]
doc = false
name = "bindgen"
[dependencies]
clang-sys = "~0.8"
# only for main, see https://github.com/rust-lang/cargo/issues/1982
docopt = "~0.6.80"
# only for main, see https://github.com/rust-lang/cargo/issues/1982
env_logger = "~0.3.3"
libc = "~0.2.11"
log = "~0.3.6"
# only for main, see https://github.com/rust-lang/cargo/issues/1982
rustc-serialize = "~0.3.19"
syntex_syntax = "~0.38.0"
cexpr = "0.1.1"
[dependencies.clippy]
optional = true
version = "0.0.72"
[dev-dependencies]
diff = "~0.1.9"
lazy_static = "0.2"
[features]
static = ["clang-sys/static"]
[[test]]
name = "tests"