-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (69 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
81 lines (69 loc) · 1.9 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
[package]
name = "rust-clip"
version = "0.1.0"
edition = "2021"
authors = ["Federico Paglioni <paglioni.federico@gmail.com>"] # <--- OBBLIGATORIO per WiX
description = "Universal Clipboard Sync"
license = "MIT" # <--- OBBLIGATORIO (o Apache-2.0)
default-run = "rust-clip"
[[bin]]
name = "rust-clip"
path = "src/main.rs"
[build-dependencies]
winres = "0.1"
[dependencies]
# --- SYSTEM & ASYNC ---
tokio = { version = "1.32", features = ["full"] }
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
local-ip-address = "0.5"
flume = "0.11"
chrono = "0.4"
directories = "5.0"
open = "5.0"
# --- CRYPTO ---
rand = "0.8"
sha2 = "0.10"
hkdf = "0.12"
aes-gcm = "0.10"
chacha20poly1305 = "0.10"
bip39 = "2.0"
hex = "0.4"
machine-uid = "0.5"
# --- DATA ---
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
dashmap = "5.5"
rust-i18n = "3.0"
# --- CLIPBOARD & MEDIA ---
arboard = "3.3"
image = "0.24"
# --- NETWORKING ---
mdns-sd = "0.10"
# --- GUI & TRAY ---
# AGGIORNAMENTO CRUCIALE QUI SOTTO:
eframe = "0.30.0" # Salto di versione per fix macOS
tray-icon = "0.19" # Aggiorniamo anche questo per compatibilità
# tao = "0.28" # Rimuoviamo tao esplicito per evitare conflitti con winit di eframe
# --- UX ---
notify-rust = "4.10" # Per le notifiche native
auto-launch = "0.5" # Per l'avvio al login
hostname = "0.3"
raw-window-handle = "0.6"
sys-locale = "0.3"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_UI_WindowsAndMessaging"
] }
[package.metadata.bundle]
name = "RustClip"
identifier = "com.rustclip.app" # Questo ID abilita le notifiche su Mac!
icon = ["assets/icon.png"]
version = "1.0.0"
copyright = "Copyright 2024 RustClip"
category = "Productivity"
short_description = "Universal Clipboard Sync"
long_description = "Share clipboard content between devices via LAN."