[package]
edition = "2021"
name = "lcax_core"
version = "3.4.0"
authors = ["Christian Kongsgaard <christian@kongsgaard.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LCAx is an open, machine and human-readable data format for exchanging LCA results."
homepage = "https://lcax.kongsgaard.eu"
documentation = "https://lcax.kongsgaard.eu"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/ocni-dtu/lcax"
[features]
default = []
jsbindings = [
"wasm-bindgen",
"console_error_panic_hook",
"tsify-next",
"strum",
"strum_macros",
]
pybindings = [
"pyo3",
"pyo3/extension-module",
]
[lib]
name = "lcax_core"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4.38"
[dependencies.console_error_panic_hook]
version = "0.1.7"
optional = true
[dependencies.pkg-version]
version = "1.0.0"
[dependencies.pyo3]
version = "0.24"
features = [
"abi3-py310",
"chrono",
]
optional = true
[dependencies.schemars]
version = "0.8.21"
features = ["chrono"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.strum]
version = "0.27.2"
optional = true
[dependencies.strum_macros]
version = "0.27.2"
optional = true
[dependencies.tsify-next]
version = "0.5.5"
optional = true
[dependencies.wasm-bindgen]
version = "0.2.100"
optional = true
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(wasm_bindgen_unstable_test_coverage)"]