blob: a52b025a584ddcdef0d05fbc929f1566bb6efead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "windows-utils"
description = ""
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
exclude = ["index.node"]
[lints]
workspace = true
[lib]
crate-type = ["cdylib"]
path = "windows-utils-rs/lib.rs"
[target.'cfg(target_os = "windows")'.dependencies]
neon = "1"
windows = { workspace = true, features = ["Win32", "Win32_UI", "Win32_UI_Shell", "Win32_System", "Win32_System_Com", "Win32_Storage_FileSystem"] }
thiserror = { workspace = true }
talpid-types = { path = "../../../talpid-types" }
talpid-windows = { path = "../../../talpid-windows" }
|