A photo manager for VRChat.
1[package]
2name = "vrcpm-rs"
3version = "0.2.3"
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.0.0-rc", features = ["tray-icon", "image-png"] }
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"] }
23tauri-plugin-single-instance = { version = "2.0.0", features = ["deep-link"] }
24tauri-plugin-shell = "2.0.0-rc.2"
25tauri-plugin-http = "2.0.0-rc.0"
26tauri-plugin-process = "2.0.0-rc.0"
27image = "0.25.2"
28fast_image_resize = { version = "4.2.1", features = [ "image" ] }
29
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"]