A photo manager for VRChat.
1[package]
2name = "VRChatPhotoManager"
3version = "0.2.7"
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"
18dirs = "5.0.1"
19notify = "6.1.1"
20regex = "1.10.4"
21reqwest = { version = "0.12", features = ["blocking"] }
22image = "0.25.2"
23fast_image_resize = { version = "4.2.1", features = [ "image" ] }
24arboard = "3.6.0"
25tauri-plugin-single-instance = { version = "2.3.2", features = ["deep-link"] }
26tauri-plugin-shell = "2.3.0"
27tauri-plugin-http = "2.5.1"
28tauri-plugin-process = "2.3.0"
29[target.'cfg(windows)'.dependencies]
30mslnk = { version = "0.1.8" }
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