-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
72 lines (64 loc) · 1.61 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "windows-capture"
version = "1.4.2"
authors = ["NiiightmareXD"]
edition = "2021"
description = "Fastest Windows Screen Capture Library For Rust 🔥"
documentation = "https://docs.rs/windows-capture"
readme = "README.md"
repository = "https://github.com/NiiightmareXD/windows-capture"
license = "MIT"
keywords = ["screenshot", "screen", "capture", "graphics", "windows"]
categories = [
"api-bindings",
"graphics",
"gui",
"multimedia",
"os::windows-apis",
]
resolver = "2"
[dependencies]
# Windows API
windows = { version = "0.58.0", features = [
"Foundation_Metadata",
"Foundation",
"Graphics_Capture",
"Graphics_DirectX_Direct3D11",
"Graphics_Imaging",
"Media_Core",
"Media_MediaProperties",
"Media_Transcoding",
"Security_Cryptography",
"Storage_Streams",
"Storage",
"System",
"Win32_Devices_Display",
"Win32_Foundation",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_Gdi",
"Win32_System_Threading",
"Win32_System_WinRT_Direct3D11",
"Win32_System_WinRT_Graphics_Capture",
"Win32_UI_WindowsAndMessaging",
] }
# Mutex optimization
parking_lot = "0.12.3"
# Multithreading
rayon = "1.10.0"
# Error handling
thiserror = "1.0.66"
clap = { version = "4.5.20", features = ["derive"] }
ctrlc = "3.4.5"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[[example]]
name = "basic"
doc-scrape-examples = false
[[example]]
name = "cli"
doc-scrape-examples = false
[workspace]
members = ["windows-capture-python"]