-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
16 lines (14 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
16 lines (14 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "process_memory_writer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The name of the native library. This is the name which will be used in Python to import the
# library (i.e. `import string_sum`). If you change this, you must also change the name of the
# `#[pymodule]` in `src/lib.rs`.
name = "process_memory_writer"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["extension-module", "abi3", "abi3-py39"] }
windows = { version = "0.58.0", features = ["Win32_System_ProcessStatus", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Threading", "Win32_Foundation", "Win32_System_Diagnostics_Debug"] }