WIP push-to-talk Letta chat frontend
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 49 lines 1.5 kB view raw
1[package] 2name = "miwiwi" 3version = "0.1.0" 4description = "A Tauri App" 5authors = ["you"] 6edition = "2021" 7 8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 9 10[lib] 11# The `_lib` suffix may seem redundant but it is necessary 12# to make the lib name unique and wouldn't conflict with the bin name. 13# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 14name = "miwiwi_lib" 15crate-type = ["staticlib", "cdylib", "rlib"] 16 17[build-dependencies] 18tauri-build = { version = "2", features = [] } 19 20[dependencies] 21tauri = { version = "2", features = [] } 22tauri-plugin-opener = "2" 23serde = { version = "1", features = ["derive"] } 24serde_json = "1" 25cpal = "0.16.0" 26tokio-tungstenite = { version = "0.27.0", features = ["native-tls"] } 27tungstenite = "0.27.0" 28futures-util = "0.3.31" 29tokio = "1.47.1" 30dasp = { version = "0.11.0", features = ["all"] } 31keyring = { version = "3.6.3", features = [ 32 "apple-native", 33 "windows-native", 34 "sync-secret-service", 35] } 36strum = { version = "0.27.2", features = ["derive"] } 37tauri-plugin-store = "2" 38tauri-plugin-http = "2" 39reqwest = { version = "0.12.23", features = ["json"] } 40reqwest-eventsource = "0.6.0" 41ts-rs = "11.0.1" 42serde_string_enum = "0.2.1" 43unicase = "2.8.1" 44base64 = "0.22.1" 45 46[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] 47tauri-plugin-positioner = "2" 48tauri-plugin-single-instance = "2" 49tauri-plugin-window-state = "2"