xref: /libCEED/rust/libceed-sys/Cargo.toml (revision 28c34ec8fe25d45643dd249b8e731c30c01cfe43)
1[package]
2authors = [
3    "Jed Brown <jed@jedbrown.org>",
4    "Yohann Dudouit <dudouit1@llnl.gov>",
5    "Jeremy L Thompson <thompson.jeremy.luke@gmail.com>",
6]
7build = "build.rs"
8name = "libceed-sys"
9version = "0.8.0"
10links = "libceed-sys"
11edition = "2018"
12license = "BSD-2-Clause License"
13repository = "https://github.com/CEED/libCEED/rust/libceed-sys"
14documentation = "https://libceed.readthedocs.io/en/latest/"
15description = """
16Low-level bindings for libCEED library.
17"""
18keywords = ["libceed", "exascale", "high-order"]
19categories = ["science"]
20include = [
21    "build.rs",
22    "src/**",
23    "c-src",
24    "c-src/**",
25    "c-src/backends/**/**",
26    "c-src/gallery/**/**",
27    "c-src/include/**/**",
28    "c-src/interface/**/**",
29]
30
31[lib]
32name = "libceed_sys"
33
34[features]
35default = ["static"]
36static = []
37system = []
38
39[build-dependencies]
40bindgen = "*"
41pkg-config = "0.3.19"
42