-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 829 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
[package]
name = "devolutions-pedm-shell-ext"
version.workspace = true
edition = "2021"
license = "MIT/Apache-2.0"
authors = ["Devolutions Inc. <infos@devolutions.net>"]
description = "Devolutions PEDM Windows shell extension"
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
tokio = { version = "1.45", features = ["sync"] }
windows-core = "0.61" # necessary because of macro resolving `windows::core`. Must match `win-api-wrappers` version.
devolutions-pedm-shared = { path = "../devolutions-pedm-shared", features = ["pedm_client", "desktop"] }
win-api-wrappers = { path = "../win-api-wrappers" }
parking_lot = "0.12"
[build-dependencies]
devolutions-pedm-shared = { path = "../devolutions-pedm-shared", features = ["build"] }
fs_extra = "1.3"
[target.'cfg(windows)'.build-dependencies]
embed-resource = "3.0"