-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1.05 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
[package]
name = "LinkEcho"
version = "0.1.0"
edition = "2021"
authors = ["iKineticate"]
keywords = ["notification", "windows", "toast", "notify"]
repository = "https://github.com/iKineticate/LinkEcho"
homepage = "https://github.com/iKineticate/LinkEcho"
license = "MIT"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glob = "0.3.1" # 遍历文件夹中的子文件(夹)
rfd = "0.14.1" # 选择文件夹
winsafe = { version = "0.0.21", features = ["shell"] }
crossterm = "0.28.0"
ratatui = "0.28.1"
color-eyre = "0.6.3"
chrono = "0.4.38" # 获取时间
copypasta = "0.10.1" # 粘贴至剪切板
win-toast-notify = "0.1.5"
rust-i18n = "3" # 国际化文本
# 以下是图标转换库相关库
image = "0.24"
console = "0.15"
anyhow = "1"
rayon = "1.5"
resvg = "0.23"
usvg = "0.23"
tiny-skia = "0.6"
[dependencies.windows]
version = "0.58.0"
features = [
"Win32_Globalization",
]
[build-dependencies]
embed-resource = "2.4" # 载入清单
[profile.release]
lto = true
codegen-units = 1