xref: /libCEED/rust/libceed-sys/Cargo.toml (revision bf185410af015d53ed6d3b520013ce284095d550)
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.9.0"
10links = "libceed-sys"
11edition = "2018"
12license = "BSD-2-Clause"
13repository = "https://github.com/CEED/libCEED"
14documentation = "https://docs.rs/libceed-sys"
15description = """
16Low-level bindings for libCEED library.
17"""
18keywords = ["libceed", "exascale", "high-order"]
19categories = ["science"]
20include = [
21    "build.rs",
22    "README.md",
23    "src/**",
24    "c-src/**",
25]
26
27[features]
28default = ["static"]
29static = []
30system = []
31
32[build-dependencies]
33bindgen = "0.58.1"
34pkg-config = "0.3.19"
35
36[dev-dependencies]
37version-sync = "0.9.2"
38