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"] 20 21[lib] 22name = "libceed_sys" 23 24[features] 25default = ["static"] 26static = [] 27system = [] 28 29[build-dependencies] 30bindgen = "*" 31pkg-config = "0.3.19" 32