[package] name = "miwiwi" 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 = "miwiwi_lib" crate-type = ["staticlib", "cdylib", "rlib"] [build-dependencies] tauri-build = { version = "2", features = [] } [dependencies] tauri = { version = "2", features = [] } tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" cpal = "0.16.0" tokio-tungstenite = { version = "0.27.0", features = ["native-tls"] } tungstenite = "0.27.0" futures-util = "0.3.31" tokio = "1.47.1" dasp = { version = "0.11.0", features = ["all"] } keyring = { version = "3.6.3", features = [ "apple-native", "windows-native", "sync-secret-service", ] } strum = { version = "0.27.2", features = ["derive"] } tauri-plugin-store = "2" tauri-plugin-http = "2" reqwest = { version = "0.12.23", features = ["json"] } reqwest-eventsource = "0.6.0" ts-rs = "11.0.1" serde_string_enum = "0.2.1" unicase = "2.8.1" base64 = "0.22.1" [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] tauri-plugin-positioner = "2" tauri-plugin-single-instance = "2" tauri-plugin-window-state = "2"