-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "process_vm_io"
version = "1.0.14" # Remember to update `html_root_url` and `dependency status` link.
description = "I/O access to virtual memory contents of processes"
authors = [
"Koutheir Attouchi <koutheir.attouchi@microdoc.com>"
]
homepage = "https://github.com/microdoc/process_vm_io"
repository = "https://github.com/microdoc/process_vm_io"
documentation = "https://docs.rs/process_vm_io"
readme = "README.md"
license = "MIT"
edition = "2024"
categories = [
"api-bindings",
"development-tools",
"memory-management",
"os"
]
keywords = [
"process_vm_readv",
"process_vm_writev",
"ptrace",
"memory",
"inject",
]
[dev-dependencies]
assert_matches = { version = "1" }
[dependencies]
backtrace = { version = "0.3" }
libc = { version = "0.2" }
smallvec = { version = "1" }