-
Notifications
You must be signed in to change notification settings - Fork 93
/
Cargo.toml
44 lines (38 loc) · 1.32 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 = "winvd"
version = "0.0.47"
authors = ["Jari Otto Oskari Pennanen"]
license = "MIT"
edition = "2021"
description = "Provides functions for accessing Windows 11 virtual desktop API, requires at least 22621 build."
readme = "README-crate.md"
homepage = "https://github.com/ciantic/VirtualDesktopAccessor/tree/rust/"
repository = "https://github.com/ciantic/VirtualDesktopAccessor/tree/rust/"
[dependencies]
windows = { version = "0.56", features = [
# Find WinApi features with searching here https://microsoft.github.io/windows-docs-rs/
"implement",
"Win32_System_Com",
"Win32_UI_Shell_Common", # for IObjectArray
"Win32_UI_WindowsAndMessaging", # for TranslateMessage etc.
"Win32_Foundation", # for FindWindowW
"Win32_System_Threading", # For CreateThread
] }
windows-core = { version = "0.56" }
windows-interface = { version = "0.56" }
windows-implement = { version = "0.56" }
crossbeam-channel = { version = "0.5", optional = true }
winit = { version = "0.30", optional = true }
macro_rules_attribute = "0.2"
[dev-dependencies]
once_cell = "1.5.0"
[lib]
name = "winvd"
path = "src/lib.rs"
[features]
integration-tests = []
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
all-features = true
[workspace]
members = ["testbin", "dll"] # , "examples/with-iced"]