| 1 | [package] |
| 2 | name = "journal-registry" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | |
| 7 | [lints] |
| 8 | workspace = true |
| 9 | |
| 10 | [dependencies] |
| 11 | allocative = { workspace = true, optional = true } |
| 12 | notify = { workspace = true } |
| 13 | parking_lot = { workspace = true } |
| 14 | serde = { workspace = true, features = ["derive"] } |
| 15 | thiserror = { workspace = true } |
| 16 | tokio = { workspace = true, features = ["sync"] } |
| 17 | tracing = { workspace = true } |
| 18 | uuid = { workspace = true, features = ["v4", "serde"] } |
| 19 | walkdir = { workspace = true } |
| 20 | |
| 21 | journal-common = { workspace = true } |
| 22 | |
| 23 | [features] |
| 24 | allocative = ["dep:allocative", "journal-common/allocative"] |