[package]
edition = "2024"
rust-version = "1.88"
name = "prov-store"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The write surface over a prov workspace: the storage port, metadata editing, and the ID registry"
homepage = "https://github.com/diaryx-org/prov"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/diaryx-org/prov"
resolver = "2"
[features]
default = ["yaml"]
fig-lang = [
"fig/fig",
"prov-graph/fig-lang",
]
json = [
"fig/json",
"prov-graph/json",
]
toml = [
"fig/toml",
"prov-graph/toml",
]
yaml = [
"fig/yaml",
"prov-graph/yaml",
]
[lib]
name = "prov_store"
path = "src/lib.rs"
[dependencies.fig]
version = "3.1"
features = [
"serde",
"derive",
"indexmap",
]
default-features = false
[dependencies.prov-graph]
version = "0.7.0"
default-features = false
[dev-dependencies.proptest]
version = "1"