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

Configure Feed

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

Update tauri-plugin-localhost

+14 -6
+13 -5
src-tauri/Cargo.lock
··· 1075 1075 checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1076 1076 1077 1077 [[package]] 1078 + name = "httpdate" 1079 + version = "1.0.2" 1080 + source = "registry+https://github.com/rust-lang/crates.io-index" 1081 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1082 + 1083 + [[package]] 1078 1084 name = "ico" 1079 1085 version = "0.2.0" 1080 1086 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2625 2631 [[package]] 2626 2632 name = "tauri-plugin-localhost" 2627 2633 version = "0.1.0" 2628 - source = "git+https://github.com/tauri-apps/tauri-plugin-localhost.git?rev=a759df6a42d1a3986c9551a7130dd7f81a47d248#a759df6a42d1a3986c9551a7130dd7f81a47d248" 2634 + source = "git+https://github.com/tauri-apps/plugins-workspace?branch=dev#f6ab641e08ae95f5541626d99b6115f9cc6f8db4" 2629 2635 dependencies = [ 2630 2636 "http", 2637 + "log", 2638 + "serde", 2631 2639 "serde_json", 2632 2640 "tauri", 2641 + "thiserror", 2633 2642 "tiny_http", 2634 2643 ] 2635 2644 ··· 2802 2811 2803 2812 [[package]] 2804 2813 name = "tiny_http" 2805 - version = "0.11.0" 2814 + version = "0.12.0" 2806 2815 source = "registry+https://github.com/rust-lang/crates.io-index" 2807 - checksum = "e0d6ef4e10d23c1efb862eecad25c5054429a71958b4eeef85eb5e7170b477ca" 2816 + checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82" 2808 2817 dependencies = [ 2809 2818 "ascii", 2810 2819 "chunked_transfer", 2820 + "httpdate", 2811 2821 "log", 2812 - "time", 2813 - "url", 2814 2822 ] 2815 2823 2816 2824 [[package]]
+1 -1
src-tauri/Cargo.toml
··· 18 18 serde_json = "^1.0" 19 19 serde = { version = "^1.0", features = ["derive"] } 20 20 tauri = { version = "^1.2.3", features = ["clipboard-all", "dialog-all", "fs-all", "global-shortcut-all", "http-all", "path-all", "protocol-all", "shell-open", "shell-open-api", "window-all"] } 21 - tauri-plugin-localhost = { git = "https://github.com/tauri-apps/tauri-plugin-localhost.git", rev = "a759df6a42d1a3986c9551a7130dd7f81a47d248" } 21 + tauri-plugin-localhost = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" } 22 22 tauri-plugin-window-state = { version = "^0.1.0" } 23 23 24 24 [features]