File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ readme = "README.md"
44description = " a process hooking library"
55repository = " https://github.com/elde-n/mnemosyne"
66
7- version = " 0.3.0 "
7+ version = " 0.3.1 "
88edition = " 2024"
99license = " LGPL-3.0-only"
1010
@@ -16,8 +16,8 @@ scanner = ["memchr", "xxhash-rust"]
1616process = []
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" ,
Original file line number Diff line number Diff 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+ ```
You can’t perform that action at this time.
0 commit comments