-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (26 loc) · 807 Bytes
/
Cargo.toml
File metadata and controls
27 lines (26 loc) · 807 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
27
[package]
name = "chatter"
version = "1.1.3"
edition = "2024"
description = "Text-to-speech from the terminal, powered by Qwen3-TTS"
license = "Apache-2.0"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
pyo3 = { version = "0.28", features = ["auto-initialize"] }
indicatif = "0.18"
owo-colors = { version = "4", features = ["supports-colors"] }
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
directories = "6"
toml = { version = "0.8", features = ["preserve_order"] }
hound = "3.5"
mp3lame-encoder = "0.2"
chrono = { version = "0.4", features = ["serde"] }
dialoguer = "0.11"
console = "0.15"
pulldown-cmark = "0.13.3"
pdf-extract = "0.10.0"
zip = { version = "2", default-features = false, features = ["deflate"] }
libc = "0.2.183"