-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (65 loc) · 1.67 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (65 loc) · 1.67 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
[package]
name = "utter"
version = "0.3.0"
edition = "2021"
description = "Local push-to-talk voice dictation for Linux, powered by NVIDIA Parakeet"
license = "MIT"
repository = "https://github.com/jguice/utter"
[dependencies]
transcribe-rs = { version = "0.3", features = ["onnx"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "process", "signal", "io-util", "sync", "time", "fs"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dirs = "5"
env_logger = "0.11"
log = "0.4"
nix = { version = "0.29", features = ["signal"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
[target.'cfg(target_os = "linux")'.dependencies]
evdev = { version = "0.13", features = ["tokio"] }
[target.'cfg(target_os = "macos")'.dependencies]
cpal = "0.15"
core-graphics = "0.24"
core-foundation = "0.10"
objc2 = "0.5"
block2 = "0.5"
objc2-app-kit = { version = "0.2", features = [
"NSPasteboard",
"NSApplication",
"NSRunningApplication",
"NSResponder",
"NSMenu",
"NSMenuItem",
"NSStatusBar",
"NSStatusItem",
"NSStatusBarButton",
"NSButton",
"NSControl",
"NSView",
"NSCell",
"NSImage",
"NSEvent",
"NSGraphicsContext",
"NSColor",
"NSAppearance",
"NSWindow",
"NSText",
"NSTextField",
"NSStackView",
"NSLayoutConstraint",
"NSLayoutAnchor",
"NSFont",
"NSFontDescriptor",
"NSLayoutGuide",
"NSGraphics",
"NSBox",
"NSUserInterfaceLayout",
] }
objc2-foundation = { version = "0.2", features = ["NSString", "NSArray", "NSThread", "NSTimer", "NSDate", "NSGeometry"] }
[dev-dependencies]
tempfile = "3"
[profile.release]
panic = "abort"
strip = true
lto = "thin"