[package]
edition = "2021"
rust-version = "1.75"
name = "winreg-artifacts"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic artifact decoders for Windows Registry"
readme = false
license = "Apache-2.0"
[lib]
name = "winreg_artifacts"
path = "src/lib.rs"
[[test]]
name = "amcache_tests"
path = "tests/amcache_tests.rs"
[[test]]
name = "catalog_scan_tests"
path = "tests/catalog_scan_tests.rs"
[[test]]
name = "com_hijacking_tests"
path = "tests/com_hijacking_tests.rs"
[[test]]
name = "discover_user_hives_tests"
path = "tests/discover_user_hives_tests.rs"
[[test]]
name = "lsadump_tests"
path = "tests/lsadump_tests.rs"
[[test]]
name = "lxss_tests"
path = "tests/lxss_tests.rs"
[[test]]
name = "path_expansion_tests"
path = "tests/path_expansion_tests.rs"
[[test]]
name = "registry_keys_tests"
path = "tests/registry_keys_tests.rs"
[[test]]
name = "run_keys_tests"
path = "tests/run_keys_tests.rs"
[[test]]
name = "sam_tests"
path = "tests/sam_tests.rs"
[[test]]
name = "shellbags_tests"
path = "tests/shellbags_tests.rs"
[[test]]
name = "shimcache_tests"
path = "tests/shimcache_tests.rs"
[[test]]
name = "svc_diff_tests"
path = "tests/svc_diff_tests.rs"
[[test]]
name = "typed_urls_tests"
path = "tests/typed_urls_tests.rs"
[[test]]
name = "userassist_tests"
path = "tests/userassist_tests.rs"
[dependencies.chrono]
version = "0.4"
features = [
"alloc",
"serde",
]
default-features = false
[dependencies.forensicnomicon]
version = "0.5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.shellitem]
version = "0.1"
[dependencies.winreg-core]
version = "0.1.0"
[dependencies.winreg-discover]
version = "0.1.0"
[dependencies.winreg-format]
version = "0.1.0"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.winreg-format]
version = "0.1.0"
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 1
[lints.clippy.cast_possible_wrap]
level = "allow"
priority = 1
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1
[lints.clippy.cast_sign_loss]
level = "allow"
priority = 1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.expect_used]
level = "deny"
priority = 0
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.clippy.unwrap_used]
level = "deny"
priority = 0
[lints.rust]
unsafe_code = "forbid"