A photo manager for VRChat.
at main 1.1 kB view raw
1[package] 2name = "VRChatPhotoManager" 3version = "0.2.7-hot1" 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.9", features = [ "tray-icon", "image-png", "devtools" ] } 15serde = { version = "1.0", features = ["derive"] } 16serde_json = "1.0" 17open = "5.3" 18dirs = "6.0" 19notify = "8.2" 20regex = "1.12" 21reqwest = { version = "0.12", features = ["blocking"] } 22image = "0.25" 23fast_image_resize = { version = "5.3", features = [ "image" ] } 24arboard = "3.6" 25tauri-plugin-single-instance = { version = "2.3", features = ["deep-link"] } 26tauri-plugin-shell = "2.3" 27tauri-plugin-http = "2.5" 28tauri-plugin-process = "2.3" 29[target.'cfg(windows)'.dependencies] 30mslnk = { version = "0.1" } 31 32[features] 33# this feature is used for production builds or when `devPath` points to the filesystem 34# DO NOT REMOVE!! 35custom-protocol = ["tauri/custom-protocol"] 36 37[profile.release.package.wry] 38debug = true 39debug-assertions = true