-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (45 loc) · 1.74 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
45
46
47
48
49
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"app/*",
"demo/*",
"library/*",
"playground",
]
[workspace.package]
edition = "2021"
[workspace.dependencies]
rand = "0.8.5" # 随机数
regex = "1.10.5"
env_logger = "0.11.3" # 记录环境变量
eframe = "0.27.2" # egui
rfd = "0.14.1"
egui_demo_lib = "0.27.2" # egui demo
iced = "0.12.1" # GUI: iced
slint = "1.5" # GUI: slint
slint-build = "1.5" # for slit build
clipboard = "0.5.0" # 剪切板
fltk = "1.4" # GUI: fltk
tray-icon = "0.14.3" # Create tray icons for desktop applications
winit = "0.30.3" # Cross-platform window creation library.
xilem = "0.1.0" # A next-generation cross-platform Rust UI framework.
anyhow = "1.0.86" # Flexible concrete Error type built on std::error::Error
serde = "1.0.203" # A generic serialization/deserialization framework
serde_json = "1.0.117" # A JSON serialization file format
image = "0.25.1" # Imaging library. Provides basic image processing and encoders/decoders for common image formats.
nom = "7.1.3" # A byte-oriented, zero-copy, parser combinators library
native-windows-gui = "1.0.13" # A rust library to develop native GUI applications on the desktop for Microsoft Windows.
native-windows-derive = "1.0.5" # A very light and simple rust GUI library
global-hotkey = "0.5.4" # Global hotkeys for Desktop Applications
winapi = "0.3.9" # Raw FFI bindings for all of Windows API.
thiserror = "1.0.61"
clap = "4.5.9" # A simple to use, efficient, and full-featured Command Line Argument Parser
clipboard-win = "5.4.0" # Provides simple way to interact with Windows clipboard.
[profile.release]
strip = true
opt-level = 3
lto = "fat"
codegen-units = 1
debug = false
panic = "abort"