this repo has no description
1[package]
2name = "VRCMacros"
3version = "0.1.0"
4description = "A Tauri App"
5authors = ["_phaz"]
6edition = "2021"
7
8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10[lib]
11# The `_lib` suffix may seem redundant but it is necessary
12# to make the lib name unique and wouldn't conflict with the bin name.
13# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
14name = "vrcmacros_lib"
15crate-type = ["staticlib", "cdylib", "rlib"]
16
17[build-dependencies]
18tauri-build = { version = "2", features = [] }
19
20[dependencies]
21tauri = { version = "2", features = [ 'tray-icon', 'image-png' ] }
22tauri-plugin-opener = "2"
23serde = { version = "1", features = ["derive"] }
24serde_json = "1"
25tokio = { version = "1.47", features = [ "macros" ] }
26dirs = "6.0"
27anyhow = "1.0"
28flate2 = "1.1"
29tauri-plugin-dialog = "2"
30crossbeam-channel = "0.5"
31tauri-plugin-clipboard-manager = "2"
32