| 1 | [package] |
| 2 | name = "df-store" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [dependencies] |
| 9 | # df-index owns the jj metadata format; this crate does not duplicate that |
| 10 | # parser. Note the dependency direction: df-index has no Git dependency, so |
| 11 | # `gix` still stops here. |
| 12 | df-index = { path = "../df-index" } |
| 13 | |
| 14 | anyhow.workspace = true |
| 15 | async-trait.workspace = true |
| 16 | chrono.workspace = true |
| 17 | # CONSTRAINT (spec §3 rule 1): this is the ONLY crate permitted to depend on |
| 18 | # `gix`. Enforced by scripts/check-store-boundary.sh in CI. |
| 19 | gix.workspace = true |
| 20 | lru.workspace = true |
| 21 | similar.workspace = true |
| 22 | thiserror.workspace = true |
| 23 | tokio.workspace = true |
| 24 | tracing.workspace = true |
| 25 | uuid.workspace = true |
| 26 | |
| 27 | [dev-dependencies] |
| 28 | tempfile = "3" |
| 29 | serde_json.workspace = true |
29 lines · TOML