| 1 | [package] |
| 2 | name = "df-index" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | |
| 8 | [dependencies] |
| 9 | # The line mapping comment anchors rebase through must agree with the diff the |
| 10 | # reviewer sees, so it uses the same differ df-store renders with. |
| 11 | similar.workspace = true |
| 12 | chrono.workspace = true |
| 13 | sha2.workspace = true |
| 14 | hex.workspace = true |
| 15 | thiserror.workspace = true |
| 16 | tracing.workspace = true |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | # The fixture corpus is driven through the git CLI in integration tests rather |
| 20 | # than by linking gix here — df-index must not depend on a git library |
| 21 | # (spec §3 rule 1). |
| 22 | serde_json.workspace = true |
22 lines · TOML