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] 7name = "libceed" 8version = "0.11.0" 9edition = "2018" 10rust-version = "1.56" 11license = "BSD-2-Clause" 12repository = "https://github.com/CEED/libCEED" 13documentation = "https://docs.rs/libceed" 14description = """ 15High-level interface for libCEED - the efficient high-order discretization library developed by the ECP co-design center CEED. 16""" 17keywords = ["libceed", "exascale", "high-order"] 18categories = ["science"] 19 20[dependencies] 21libceed-sys = { version = "0.11", path = "../libceed-sys" } 22katexit = { version = "0.1.1", optional = true } 23 24[dev-dependencies] 25version-sync = "0.9.2" 26 27[package.metadata.docs.rs] 28features = ["katexit"] 29