Jump to…
snowinitial commitqoxwzsukwmkx1mo
Matt W1[package]
Matt W2name = "df-store"
Matt W3version.workspace = true
Matt W4edition.workspace = true
Matt W5rust-version.workspace = true
Matt W6license.workspace = true
Matt W7
Matt W8[dependencies]
Matt W9# df-index owns the jj metadata format; this crate does not duplicate that
Matt W10# parser. Note the dependency direction: df-index has no Git dependency, so
Matt W11# `gix` still stops here.
Matt W12df-index = { path = "../df-index" }
Matt W13
Matt W14anyhow.workspace = true
Matt W15async-trait.workspace = true
Matt W16chrono.workspace = true
Matt W17# CONSTRAINT (spec §3 rule 1): this is the ONLY crate permitted to depend on
Matt W18# `gix`. Enforced by scripts/check-store-boundary.sh in CI.
Matt W19gix.workspace = true
Matt W20lru.workspace = true
Matt W21similar.workspace = true
Matt W22thiserror.workspace = true
Matt W23tokio.workspace = true
Matt W24tracing.workspace = true
Matt W25uuid.workspace = true
Matt W26
Matt W27[dev-dependencies]
Matt W28tempfile = "3"
Matt W29serde_json.workspace = true

29 lines · TOML