[package]
edition = "2021"
rust-version = "1.88"
name = "wire-desktop-core"
version = "0.1.2"
authors = ["Albert Hui <albert@securityronin.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wire desktop (Electron) messenger reader — interprets the Chromium IndexedDB-over-LevelDB Dexie object stores into typed Wire records (conversations, events, users, clients) and a timeline; surfaces client-side-encrypted message payloads as unrecoverable rather than fabricating plaintext"
homepage = "https://github.com/SecurityRonin/wire-desktop-forensic"
documentation = "https://docs.rs/wire-desktop-core"
readme = "README.md"
keywords = [
"forensics",
"wire",
"messenger",
"indexeddb",
"dfir",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/SecurityRonin/wire-desktop-forensic"
[lib]
name = "wire_desktop_core"
path = "src/lib.rs"
[[test]]
name = "clients"
path = "tests/clients.rs"
[[test]]
name = "conversations"
path = "tests/conversations.rs"
[[test]]
name = "differential_ccl"
path = "tests/differential_ccl.rs"
[[test]]
name = "events_cleartext"
path = "tests/events_cleartext.rs"
[[test]]
name = "events_encrypted"
path = "tests/events_encrypted.rs"
[[test]]
name = "oracle_minted"
path = "tests/oracle_minted.rs"
[[test]]
name = "store_structure"
path = "tests/store_structure.rs"
[[test]]
name = "timeline"
path = "tests/timeline.rs"
[[test]]
name = "users"
path = "tests/users.rs"
[dependencies.chromium-storage-indexeddb]
version = "0.1"
[dependencies.forensicnomicon-core]
version = "1.5"
[dependencies.thiserror]
version = "2"
[lints.clippy.all]
level = "warn"
priority = -1
[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.items_after_statements]
level = "allow"
priority = 1
[lints.clippy.manual_let_else]
level = "allow"
priority = 1
[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.similar_names]
level = "allow"
priority = 1
[lints.clippy.suspicious]
level = "deny"
priority = -1
[lints.clippy.too_many_lines]
level = "allow"
priority = 1
[lints.clippy.unwrap_used]
level = "deny"
priority = 0
[lints.rust]
unsafe_code = "forbid"