blob: 3f4fe6dda9fdb83e303246d0d3cab4bf8ed1ee8f [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
David LeGare82e2b172022-03-01 18:53:05 +00006# to registry (e.g., crates.io) dependencies.
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -07007#
David LeGare82e2b172022-03-01 18:53:05 +00008# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070011
12[package]
13name = "clang-sys"
David LeGare82e2b172022-03-01 18:53:05 +000014version = "1.3.1"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070015authors = ["Kyle Mayes <kyle@mayeses.com>"]
16build = "build.rs"
17links = "clang"
18description = "Rust bindings for libclang."
Chih-Hung Hsieh97132dc2020-10-26 17:21:51 -070019documentation = "https://docs.rs/clang-sys"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070020readme = "README.md"
21license = "Apache-2.0"
22repository = "https://github.com/KyleMayes/clang-sys"
23[package.metadata.docs.rs]
David LeGare82e2b172022-03-01 18:53:05 +000024features = ["clang_13_0", "runtime"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070025[dependencies.glob]
26version = "0.3"
27
28[dependencies.libc]
29version = "0.2.39"
30default-features = false
31
32[dependencies.libloading]
Jeff Vander Stoep582dabe2021-02-19 19:59:49 +010033version = "0.7"
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070034optional = true
35[build-dependencies.glob]
36version = "0.3"
37
38[features]
Haibo Huang8b9513e2020-07-13 22:05:39 -070039clang_10_0 = ["clang_9_0"]
Haibo Huang2e1e83e2021-02-09 23:57:34 -080040clang_11_0 = ["clang_10_0"]
David LeGare82e2b172022-03-01 18:53:05 +000041clang_12_0 = ["clang_11_0"]
42clang_13_0 = ["clang_12_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070043clang_3_5 = []
Haibo Huang8b9513e2020-07-13 22:05:39 -070044clang_3_6 = ["clang_3_5"]
45clang_3_7 = ["clang_3_6"]
46clang_3_8 = ["clang_3_7"]
47clang_3_9 = ["clang_3_8"]
48clang_4_0 = ["clang_3_9"]
49clang_5_0 = ["clang_4_0"]
50clang_6_0 = ["clang_5_0"]
51clang_7_0 = ["clang_6_0"]
52clang_8_0 = ["clang_7_0"]
53clang_9_0 = ["clang_8_0"]
Chih-Hung Hsiehfab43802020-04-07 14:24:01 -070054runtime = ["libloading"]
55static = []