-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (38 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
49 lines (38 loc) · 1.13 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
[package]
name = "whisper-git"
version = "0.1.0"
edition = "2024"
[dependencies]
# Graphics
vulkano = "0.35"
vulkano-shaders = "0.35"
winit = "0.30"
# Git
git2 = "0.20"
# Text rendering (SDF via EDT from fontdue coverage)
fontdue = "0.9"
# Screenshot/image output
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
# HTTP & hashing for gravatar
ureq = { version = "3", features = ["json"] }
md5 = "0.8"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Clipboard
arboard = { version = "3", features = ["wayland-data-control"] }
# Native file dialogs
rfd = "0.17"
# Filesystem watching
notify = "8"
# Utilities
bytemuck = { version = "1.21", features = ["derive"] }
anyhow = "1.0"
half = "2.4"
# Secure credential storage (platform-specific backends)
[target.'cfg(target_os = "linux")'.dependencies]
keyring = { version = "3", features = ["sync-secret-service"] }
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3", features = ["apple-native"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3", features = ["windows-native"] }