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] 25 26[lib] 27name = "libceed_sys" 28 29[features] 30default = ["static"] 31static = [] 32system = [] 33 34[build-dependencies] 35bindgen = "*" 36pkg-config = "0.3.19" 37