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 = [] } 22tauri-plugin-opener = "2" 23serde = { version = "1", features = ["derive"] } 24serde_json = "1" 25sqlx = { version = "0.8.6", features = [ "sqlite", "runtime-tokio" ] } 26tokio = { version = "1.47.0", features = [ "macros" ] } 27dirs = "6.0.0" 28anyhow = "1.0.99" 29