forked from fanchenio/DawnLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcargo.toml
More file actions
42 lines (38 loc) · 885 Bytes
/
cargo.toml
File metadata and controls
42 lines (38 loc) · 885 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "rust"
version = "0.0.0"
build = "build.rs"
edition = "2021"
[lib]
path = "rust/lib.rs"
crate-type = ["cdylib"]
[dependencies]
napi = { version = "2", features = ["napi4"] }
napi-derive = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
image = "0.24.6"
base64 = "0.21.2"
clipboard-win = "4.5.0"
[dependencies.windows]
version = "0.48"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_System_Com",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_Storage_FileSystem",
"Win32_System_SystemInformation",
"Win32_System_Environment",
"Win32_UI_Input_Ime",
"Win32_Globalization",
"Win32_Graphics_Dwm",
"Management_Deployment",
"ApplicationModel",
"Foundation_Collections",
"ApplicationModel_Core",
]
[build-dependencies]
napi-build = "2"
static_vcruntime = "2.0"