A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

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

at main 29 lines 840 B view raw
1[package] 2name = "diffuse" 3version = "3.5.0" 4description = "A music player that connects to your cloud/distributed storage" 5authors = ["Steven Vandevelde"] 6edition = "2021" 7 8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 9 10[build-dependencies] 11tauri-build = { version = "2.0.5", features = [] } 12 13[dependencies] 14tauri = { version = "2.2.5", features = ["unstable"] } 15tauri-plugin-dialog = "2.2.0" 16tauri-plugin-fs = "2.2.0" 17tauri-plugin-localhost = "2.2.0" 18tauri-plugin-positioner = "2.2.0" 19tauri-plugin-shell = "2.2.0" 20tauri-plugin-window-state = "2.2.1" 21serde_json = "1.0" 22 23[features] 24# this feature is used for production builds or when `devPath` points to the filesystem 25# DO NOT REMOVE!! 26custom-protocol = ["tauri/custom-protocol"] 27 28# [lib] 29# crate-type = ["staticlib", "cdylib", "rlib"]