[package]
edition = "2021"
rust-version = "1.80"
name = "srum-parser"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SRUDB.dat parser — reads SRUM records from ESE database files"
readme = false
license = "Apache-2.0"
[lib]
name = "srum_parser"
path = "src/lib.rs"
[[bin]]
name = "gap_diag"
path = "src/bin/gap_diag.rs"
[[test]]
name = "absent_table_tests"
path = "tests/absent_table_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "network_tests"
path = "tests/network_tests.rs"
[[test]]
name = "real_srudb_tests"
path = "tests/real_srudb_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.ese-core]
version = "0.1.0"
[dependencies.forensicnomicon]
version = "1"
[dependencies.srum-core]
version = "0.2.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.jiff]
version = "0.2"
features = ["serde"]
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
decimal_bitwise_operands = "allow"
implicit_hasher = "allow"
items_after_statements = "allow"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1