keychainbreaker 0.3.1

Parse and decrypt macOS Keychain files (login.keychain-db).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "keychainbreaker"
version = "0.3.1"
authors = ["moonD4rk"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse and decrypt macOS Keychain files (login.keychain-db)."
homepage = "https://github.com/moonD4rk/keychainbreaker-rs"
documentation = "https://docs.rs/keychainbreaker"
readme = "README.md"
keywords = [
    "macos",
    "keychain",
    "forensics",
    "decryption",
]
categories = [
    "cryptography",
    "parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/moonD4rk/keychainbreaker-rs"

[package.metadata.docs.rs]
all-features = true

[features]
default = ["serde"]
serde = ["dep:serde"]

[lib]
name = "keychainbreaker"
path = "src/lib.rs"

[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"

[dependencies.base64]
version = "0.22"

[dependencies.cbc]
version = "0.2"

[dependencies.cipher]
version = "0.5"

[dependencies.des]
version = "0.9"

[dependencies.hex]
version = "0.4"

[dependencies.hmac]
version = "0.13"

[dependencies.pbkdf2]
version = "0.13"
features = ["hmac"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.sha1]
version = "0.11"

[dependencies.thiserror]
version = "2"

[dependencies.time]
version = "0.3"
features = [
    "formatting",
    "parsing",
    "macros",
    "serde-well-known",
]

[dev-dependencies.rsa]
version = "0.9"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.x509-parser]
version = "0.18"

[lints.clippy]
allow_attributes = "deny"
allow_attributes_without_reason = "deny"
dbg_macro = "deny"
doc_markdown = "allow"
exit = "warn"
expect_used = "deny"
get_unwrap = "deny"
incompatible_msrv = "deny"
indexing_slicing = "warn"
mem_forget = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
redundant_pub_crate = "allow"
todo = "deny"
trivially_copy_pass_by_ref = "allow"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
elided_lifetimes_in_paths = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_must_use = "deny"
unused_qualifications = "warn"
unused_results = "warn"

[lints.rust.future_incompatible]
level = "deny"
priority = -1

[lints.rust.let_underscore]
level = "warn"
priority = -1

[lints.rust.nonstandard_style]
level = "deny"
priority = -1

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1