[package]
edition = "2021"
rust-version = "1.80"
name = "ese-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ESE (Extensible Storage Engine) database binary format reader"
readme = false
license = "MIT"
[lib]
name = "ese_core"
path = "src/lib.rs"
[[bin]]
name = "diag"
path = "src/bin/diag.rs"
[[bin]]
name = "dump_fields"
path = "src/bin/dump_fields.rs"
[[bin]]
name = "dump_idmap"
path = "src/bin/dump_idmap.rs"
[[bin]]
name = "dump_records"
path = "src/bin/dump_records.rs"
[[bin]]
name = "dump_timeline"
path = "src/bin/dump_timeline.rs"
[[test]]
name = "btree_catalog_tests"
path = "tests/btree_catalog_tests.rs"
[[test]]
name = "btree_tests"
path = "tests/btree_tests.rs"
[[test]]
name = "catalog_tests"
path = "tests/catalog_tests.rs"
[[test]]
name = "checksum_tests"
path = "tests/checksum_tests.rs"
[[test]]
name = "cursor_tests"
path = "tests/cursor_tests.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "mmap_tests"
path = "tests/mmap_tests.rs"
[[test]]
name = "record_tests"
path = "tests/record_tests.rs"
[[test]]
name = "robustness_tests"
path = "tests/robustness_tests.rs"
[[test]]
name = "table_columns_tests"
path = "tests/table_columns_tests.rs"
[dependencies.memmap2]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1