| 1 | [package] |
| 2 | name = "journal-index" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | |
| 7 | [lints] |
| 8 | workspace = true |
| 9 | |
| 10 | [features] |
| 11 | allocative = [ |
| 12 | "dep:allocative", |
| 13 | "roaring/allocative", |
| 14 | "journal-core/allocative", |
| 15 | "journal-common/allocative" |
| 16 | ] |
| 17 | |
| 18 | [dependencies] |
| 19 | allocative = { workspace = true, optional = true } |
| 20 | regex = { workspace = true } |
| 21 | roaring = { workspace = true , features = ["serde"] } |
| 22 | serde = { workspace = true, features = ["derive"] } |
| 23 | static_assertions = { workspace = true } |
| 24 | thiserror = { workspace = true } |
| 25 | tracing = { workspace = true } |
| 26 | |
| 27 | journal-core = { path = "../journal-core" } |
| 28 | journal-common = { workspace = true } |
| 29 | journal-registry = { workspace = true } |
| 30 | |
| 31 | [dev-dependencies] |
| 32 | tempfile = { workspace = true } |
| 33 | uuid = { workspace = true } |