-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 704 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 704 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
[package]
name = "DynCursor"
version = "0.1.0"
authors = ["zhouwenxiang <zhouwx@lanxi.com>"]
edition = "2018"
[build-dependencies]
winres = "0.1"
[dependencies]
# 基础组件
log = "0.4"
log4rs = "1.0"
log-panics = "2.0"
z_lib = { path = "z_lib" }
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dependencies.windows]
version = "0.24"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_Globalization",
"Win32_UI_Input_Ime",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_Diagnostics_Debug",
"Win32_System_Services",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_TextServices",
]