-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (66 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
87 lines (66 loc) · 1.71 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
name = "droid_view"
version = "0.1.5"
edition = "2024"
authors = ["Genxster1998 <ck.2229.ck@gmail.com>"]
description = "A simple, pluggable, graphical user interface for scrcpy"
license = "GPL-3.0"
repository = "https://github.com/Genxster1998/DroidView"
keywords = ["android", "scrcpy", "gui", "screen-mirroring"]
categories = ["gui", "system"]
[dependencies]
# GUI Framework
eframe = "0.32"
egui = "0.32"
egui_extras = "0.32"
egui-phosphor = { version = "0.10.0", features = ["regular", "fill", "bold", "light", "thin"] }
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# File system operations
dirs = "5.0"
# Command line argument parsing
clap = { version = "4.0", features = ["derive"] }
# Platform detection
os_info = "3.7"
# Image handling
image = "0.24"
# Network utilities
reqwest = { version = "0.11", features = ["json"] }
# Time utilities
chrono = { version = "0.4", features = ["serde"] }
# UUID generation
uuid = { version = "1.0", features = ["v4"] }
# Cross-platform path handling
path-slash = "0.2"
# Notification support
notify-rust = "4.8"
# File Dialog
rfd = "0.14"
# Rotary knob UI
egui_knob = "0.3.3"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser", "shellapi"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tokio-test = "0.4"
[profile.release]
# Optimize for size and performance
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
# Additional optimizations
overflow-checks = false
debug = false