[READ-ONLY] Mirror of https://github.com/probablykasper/time-machine-inspector. Time Machine backup size inspector app
backup macos tauri time-machine
0

Configure Feed

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

Use window-vibrancy from crates.io

Kasper (May 17, 2022, 4:19 AM +0200) 05d765ed 25a8cb66

+18 -4
+17 -3
src-tauri/Cargo.lock
··· 1680 1680 "libc", 1681 1681 "redox_syscall", 1682 1682 "smallvec", 1683 - "windows-sys", 1683 + "windows-sys 0.36.1", 1684 1684 ] 1685 1685 1686 1686 [[package]] ··· 3198 3198 [[package]] 3199 3199 name = "window-vibrancy" 3200 3200 version = "0.1.2" 3201 - source = "git+https://github.com/tauri-apps/window-vibrancy#5e7019fca24c73be44a62ea141845c4d0a61cae3" 3201 + source = "registry+https://github.com/rust-lang/crates.io-index" 3202 + checksum = "f413ac5d2ec04cc34c304af3f0c3b6bbbb6e90a4272eadb2a1b4af99c94b7556" 3202 3203 dependencies = [ 3203 3204 "cocoa", 3204 3205 "objc", 3205 3206 "raw-window-handle", 3206 - "windows-sys", 3207 + "windows-sys 0.35.0", 3207 3208 ] 3208 3209 3209 3210 [[package]] ··· 3240 3241 dependencies = [ 3241 3242 "windows_quote", 3242 3243 "windows_reader", 3244 + ] 3245 + 3246 + [[package]] 3247 + name = "windows-sys" 3248 + version = "0.35.0" 3249 + source = "registry+https://github.com/rust-lang/crates.io-index" 3250 + checksum = "c700bb45cfcbdb738ce92c41fc13e512514d4eaf6a99e8c87e2260a227175c16" 3251 + dependencies = [ 3252 + "windows_aarch64_msvc 0.35.0", 3253 + "windows_i686_gnu 0.35.0", 3254 + "windows_i686_msvc 0.35.0", 3255 + "windows_x86_64_gnu 0.35.0", 3256 + "windows_x86_64_msvc 0.35.0", 3243 3257 ] 3244 3258 3245 3259 [[package]]
+1 -1
src-tauri/Cargo.toml
··· 15 15 serde_json = "1.0" 16 16 serde = { version = "1.0", features = ["derive"] } 17 17 tauri = { version = "1.0.0-rc.10", features = ["dialog-message", "macos-private-api", "shell-open"] } 18 - window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" } 18 + window-vibrancy = "0.1" 19 19 plist = { version = "1.3.1", features = ["serde"] } 20 20 open = "2.1" 21 21