16 lines
436 B
TOML
16 lines
436 B
TOML
[package]
|
|
name = "polyscribe"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.98"
|
|
clap = { version = "4.5.43", features = ["derive"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.142"
|
|
toml = "0.8"
|
|
chrono = { version = "0.4", features = ["clock"] }
|
|
reqwest = { version = "0.12", features = ["blocking", "json"] }
|
|
sha2 = "0.10"
|
|
whisper-rs = { git = "https://github.com/tazz4843/whisper-rs" }
|