-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 1.03 KB
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
[package]
name = "shadowsync"
version = "0.1.2"
edition = "2024"
build = "build.rs"
[dependencies]
anyhow = "1.0.102"
directories = "6.0.0"
eframe = { version = "0.33.3", default-features = false, features = ["default_fonts", "glow", "wayland", "x11"] }
filetime = "0.2.25"
fs2 = "0.4.3"
notify = "8.2.0"
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "json", "rustls-tls"] }
rfd = "0.15.4"
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
sha2 = "0.11.0"
tray-icon = { version = "0.21.3", default-features = false }
walkdir = "2.5.0"
winit = "0.30.13"
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_HiDpi", "Win32_UI_WindowsAndMessaging"] }
[build-dependencies]
ico = "0.5.0"
png = "0.18.0"
resvg = "0.47.0"
winresource = "0.1.31"
[dev-dependencies]
tempfile = "3.27.0"
[profile.release]
codegen-units = 1
lto = "thin"
strip = "symbols"