Skip to content

Commit 99fafc8

Browse files
committed
Cargo.toml: bump version
1 parent 37186ca commit 99fafc8

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ readme = "README.md"
44
description = "a process hooking library"
55
repository = "https://github.com/elde-n/mnemosyne"
66

7-
version = "0.3.0"
7+
version = "0.3.1"
88
edition = "2024"
99
license = "LGPL-3.0-only"
1010

@@ -16,8 +16,8 @@ scanner = ["memchr", "xxhash-rust"]
1616
process = []
1717

1818
[dependencies]
19-
memchr = { version = "2.7.4", optional = true }
20-
nix = { version = "0.30.1", features = [
19+
memchr = { version = "2.8.0", optional = true }
20+
nix = { version = "0.31.1", features = [
2121
"uio",
2222
"mman",
2323
"process",

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,15 @@ A process hacking library.
99
- hooking virtual table methods
1010
- writing and reading memory
1111
- signature scanning
12+
13+
## Examples
14+
```rs
15+
fn main() {
16+
for process in process::list().unwrap() {
17+
if process.name == "brave" {
18+
println!("{}", process.id);
19+
}
20+
}
21+
}
22+
23+
```

0 commit comments

Comments
 (0)