-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 721 Bytes
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
[package]
name = "sotto"
version = "1.3.0"
edition = "2024"
description = "Local speech-to-text transcription for Linux/Wayland using Whisper"
license = "MIT"
repository = "https://github.com/Maciejonos/sotto"
keywords = ["whisper", "transcription", "speech-to-text", "wayland", "gtk"]
categories = ["multimedia::audio"]
[dependencies]
gtk = { version = "0.10.3", package = "gtk4" }
adw = { version = "0.8.1", package = "libadwaita" }
whisper-rs = { version = "0.15.1", features = ["vulkan"] }
ureq = "3.1.4"
dirs = "6.0.0"
cpal = "0.17.1"
voice_activity_detector = "0.2"
crossbeam-channel = "0.5"
regex = "1"
gtk4-layer-shell = "0.7"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3"
evdev = "0.13.2"
libc = "0.2"