mirror of
https://github.com/YuzuZensai/VRC-Circle.git
synced 2026-01-05 20:30:44 +00:00
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "vrc-circle"
|
|
version = "0.0.1"
|
|
description = "A Tauri App"
|
|
authors = ["Yuzu <yuzu@kirameki.cafe>"]
|
|
edition = "2024"
|
|
default-run = "vrc-circle"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "vrc_one_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
specta = { version = "2.0.0-rc.20", features = ["serde"] }
|
|
specta-typescript = "0.0.9"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset"] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-log = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.12", features = ["json", "cookies"] }
|
|
base64 = "0.22"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
|
|
futures-util = "0.3"
|
|
http = "1.1"
|
|
directories = "5.0"
|
|
dirs = "5.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
specta = { version = "2.0.0-rc.20", features = ["serde"] }
|
|
tauri-specta = { version = "2.0.0-rc.20", features = ["typescript"] }
|
|
specta-typescript = "0.0.9"
|
|
sea-orm = { version = "0.12", features = ["sqlx-sqlite", "runtime-tokio-rustls", "macros"] }
|
|
log = "0.4"
|
|
sha2 = "0.10"
|
|
url = "2"
|