17 lines
439 B
TOML
17 lines
439 B
TOML
[package]
|
|
name = "ontoref-ontology"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Load and query project ontology (.ontology/ NCL files) as typed Rust structs"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1" }
|
|
anyhow = { version = "1" }
|
|
thiserror = { version = "2" }
|
|
tracing = { version = "0.1" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { version = "3" }
|