blob: ece1c6678c1211773567f9680a6fc6ef8a3779cd [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"
Jeff Vander Stoep4737f5c2021-02-22 13:06:28 +010015version = "1.1.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]
Jeff Vander Stoep582dabe2021-02-19 19:59:49 +010034version = "0.7"
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"]
Haibo Huang2e1e83e2021-02-09 23:57:34 -080041clang_11_0 = ["clang_10_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070042clang_3_5 = []
Haibo Huang8b9513e2020-07-13 22:05:39 -070043clang_3_6 = ["clang_3_5"]
44clang_3_7 = ["clang_3_6"]
45clang_3_8 = ["clang_3_7"]
46clang_3_9 = ["clang_3_8"]
47clang_4_0 = ["clang_3_9"]
48clang_5_0 = ["clang_4_0"]
49clang_6_0 = ["clang_5_0"]
50clang_7_0 = ["clang_6_0"]
51clang_8_0 = ["clang_7_0"]
52clang_9_0 = ["clang_8_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070053runtime = ["libloading"]
54static = []