Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ shellitem = "0.2"
# its in-memory prefetch carve to this fleet crate.
prefetch-core = "0.1"
# Internal (version + path: path drives local dev, version is used on publish).
memf-format = { version = "0.3.1", path = "crates/memf-format" }
memf-strings = { version = "0.2.2", path = "crates/memf-strings" }
memf-format = { version = "0.3.2", path = "crates/memf-format" }
memf-strings = { version = "0.2.3", path = "crates/memf-strings" }
memf-symbols = { version = "0.2.4", path = "crates/memf-symbols" }
memf-core = { version = "0.2.5", path = "crates/memf-core" }
memf-core = { version = "0.2.6", path = "crates/memf-core" }
memf-linux = { version = "0.3.3", path = "crates/memf-linux" }
memf-session = { version = "0.3.3", path = "crates/memf-session" }
memf-windows = { version = "0.4.4", path = "crates/memf-windows" }
memf-windows = { version = "0.5.0", path = "crates/memf-windows" }
memf-correlate = { version = "0.3.1", path = "crates/memf-correlate" }
memf-carve = { version = "0.1.5", path = "crates/memf-carve" }
# Fleet carving contract + single-pass sweep engine.
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-core"
version = "0.2.5"
version = "0.2.6"
description = "Virtual address translation and kernel object reading for memory forensics"
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-format/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-format"
version = "0.3.1"
version = "0.3.2"
description = "Physical memory dump format parsers for the memf forensics framework"
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-strings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-strings"
version = "0.2.2"
version = "0.2.3"
description = "String extraction, classification, and YARA-X scanning for memory forensics"
edition.workspace = true
rust-version = "1.88"
Expand Down
2 changes: 1 addition & 1 deletion crates/memf-windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "memf-windows"
version = "0.4.4"
version = "0.5.0"
description = "Windows kernel memory forensic walkers (processes, threads, drivers, DLLs)"
edition.workspace = true
rust-version = "1.88"
Expand Down
Loading