-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 1.05 KB
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
44
[package]
name = "pixel_forge"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pixel_forge"
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.20.0"
# Windows API
windows = { version = "0.54.0", features = [
"Win32_System_WinRT_Graphics_Capture",
"Win32_Graphics_Direct3D11",
"Win32_Foundation",
"Graphics_Capture",
"Win32_System_WinRT_Direct3D11",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Gdi",
"System",
"Graphics_DirectX_Direct3D11",
"Foundation_Metadata",
"Win32_Devices_Display",
"Storage",
"Graphics_Imaging",
"Storage_Streams",
"Foundation",
"Media_MediaProperties",
"Media_Core",
"Media_Transcoding",
] }
windows-result = "0.1.1"
# Mutex acceleration
parking_lot = "0.12.1"
# Transfer vectors to Python as numpy arrays without list overhead
numpy = "0.20"
# Error handling
thiserror = "1.0.58"