37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "hearbit-ai"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "desktop_client_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-dialog = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = "0.4"
|
|
cpal = "0.17.1"
|
|
hound = "3.5.1"
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
tauri-plugin-fs = "2.4.5"
|
|
voice_activity_detector = "0.2.1"
|
|
rubato = "0.14.1"
|
|
tauri-plugin-oauth = "2.0.0"
|
|
oauth2 = "4.4"
|
|
url = "2.5"
|