Files
AZKi/client/Cargo.toml
2026-01-29 13:35:20 -05:00

38 lines
1.4 KiB
TOML

[package]
name = "azki-client"
version = "0.1.0"
authors = ["Amatsugu <khamraj@kaisei.app>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.7.3", features = ["router"] }
serde = "1.0.219"
serde_repr = "0.1.20"
tonic = { version = "0.14.2", default-features = false, features = [
"codegen",
] }
prost = "0.14"
prost-types = "0.14"
tonic-web-wasm-client = "0.8"
web-sys = { version = "0.3.77", features = ["Storage", "Window"] }
tokio = "1.49.0"
tonic-prost = "0.14.2"
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", version = "0.0.1", default-features = false }
time = {version = "0.3.46", features= ["wasm-bindgen"]}
chrono = "0.4.43"
[build-dependencies]
tonic-prost-build = { version = "0.14.2"}
dotenv = "0.15.0"
[features]
default = ["web"]
# The feature that are only required for the web = ["dioxus/web"] build target should be optional and only enabled in the web = ["dioxus/web"] feature
web = ["dioxus/web"]
# The feature that are only required for the desktop = ["dioxus/desktop"] build target should be optional and only enabled in the desktop = ["dioxus/desktop"] feature
desktop = ["dioxus/desktop"]
# The feature that are only required for the mobile = ["dioxus/mobile"] build target should be optional and only enabled in the mobile = ["dioxus/mobile"] feature
mobile = ["dioxus/mobile"]