| 1 | [package] |
| 2 | name = "journal_reader_ffi" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | |
| 7 | [dependencies] |
| 8 | error = { path = "../error" } |
| 9 | # journal_reader integrated into journal_file |
| 10 | journal_file = { path = "../journal_file" } |
| 11 | memmap2 = { workspace = true } |
| 12 | serde_json = { workspace = true } |
| 13 | sigbus = { path = "../sigbus" } |
| 14 | |
| 15 | [build-dependencies] |
| 16 | cbindgen = "0.28.0" |
| 17 | |
| 18 | [lib] |
| 19 | crate-type = ["staticlib"] |