[package]
edition = "2024"
rust-version = "1.85"
name = "sphinx_inv"
version = "0.2.0"
authors = ["aslowwriter"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust library to parse Sphinx `objects.inv` files"
documentation = "https://docs.rs/sphinx_inv"
readme = "README.md"
license = "MIT"
repository = "https://github.com/aslowwriter/sphinx_inv"
[lib]
name = "sphinx_inv"
path = "src/lib.rs"
[dependencies.flate2]
version = "1.1.9"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.winnow]
version = "1.0.0"
features = ["simd"]
[dev-dependencies.pretty_assertions]
version = "1.4.1"
[lints.clippy]
collapsible_match = "warn"
expect_used = "warn"
match_bool = "warn"
match_ref_pats = "warn"
match_same_arms = "warn"
match_single_binding = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
needless_bool = "deny"
needless_late_init = "warn"
needless_match = "warn"
redundant_guards = "warn"
redundant_pattern = "warn"
redundant_pattern_matching = "warn"
single_match = "warn"
single_match_else = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.bench]
debug = 2
inherits = "release"
strip = "none"
[profile.dev]
debug = 0
[profile.release]
lto = "fat"
codegen-units = 1
debug = 2
strip = "symbols"