A photo manager for VRChat.
1[package] 2name = "VRChatPhotoManager" 3version = "0.2.5" 4description = "VRChat Photo Manager" 5authors = ["_phaz"] 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.0-rc", features = [] } 12 13[dependencies] 14tauri = { version = "2.7.0", features = [ "tray-icon", "image-png", "devtools" ] } 15serde = { version = "1.0", features = ["derive"] } 16serde_json = "1.0" 17open = "5.1.2" 18tauri-plugin-deep-link = "2.0.1" 19dirs = "5.0.1" 20notify = "6.1.1" 21regex = "1.10.4" 22reqwest = { version = "0.12", features = ["blocking"] } 23image = "0.25.2" 24fast_image_resize = { version = "4.2.1", features = [ "image" ] } 25arboard = "3.6.0" 26tauri-plugin-single-instance = { version = "2.3.2", features = ["deep-link"] } 27tauri-plugin-shell = "2.3.0" 28tauri-plugin-http = "2.5.1" 29tauri-plugin-process = "2.3.0" 30[target.'cfg(windows)'.dependencies] 31mslnk = { version = "0.1.8" } 32 33[features] 34# this feature is used for production builds or when `devPath` points to the filesystem 35# DO NOT REMOVE!! 36custom-protocol = ["tauri/custom-protocol"] 37 38[profile.release.package.wry] 39debug = true 40debug-assertions = true