blob: 7937a286a6457b5c042d8285581d76d44ee5467c [file] [log] [blame]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -07001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14name = "clang-sys"
Chih-Hung Hsieh97132dc2020-10-26 17:21:51 -070015version = "1.0.1"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070016authors = ["Kyle Mayes <kyle@mayeses.com>"]
17build = "build.rs"
18links = "clang"
19description = "Rust bindings for libclang."
Chih-Hung Hsieh97132dc2020-10-26 17:21:51 -070020documentation = "https://docs.rs/clang-sys"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070021readme = "README.md"
22license = "Apache-2.0"
23repository = "https://github.com/KyleMayes/clang-sys"
24[package.metadata.docs.rs]
Haibo Huang8b9513e2020-07-13 22:05:39 -070025features = ["clang_10_0", "runtime"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070026[dependencies.glob]
27version = "0.3"
28
29[dependencies.libc]
30version = "0.2.39"
31default-features = false
32
33[dependencies.libloading]
Haibo Huang8b9513e2020-07-13 22:05:39 -070034version = "0.6"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070035optional = true
36[build-dependencies.glob]
37version = "0.3"
38
39[features]
Haibo Huang8b9513e2020-07-13 22:05:39 -070040clang_10_0 = ["clang_9_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070041clang_3_5 = []
Haibo Huang8b9513e2020-07-13 22:05:39 -070042clang_3_6 = ["clang_3_5"]
43clang_3_7 = ["clang_3_6"]
44clang_3_8 = ["clang_3_7"]
45clang_3_9 = ["clang_3_8"]
46clang_4_0 = ["clang_3_9"]
47clang_5_0 = ["clang_4_0"]
48clang_6_0 = ["clang_5_0"]
49clang_7_0 = ["clang_6_0"]
50clang_8_0 = ["clang_7_0"]
51clang_9_0 = ["clang_8_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070052runtime = ["libloading"]
53static = []