configure grpc

This commit is contained in:
2026-01-17 18:08:16 -05:00
parent fc80e50c26
commit b762139243
27 changed files with 467 additions and 500 deletions

View File

@@ -1,5 +1,5 @@
[package]
name = "azki"
name = "azki-client"
version = "0.1.0"
authors = ["Amatsugu <khamraj@kaisei.app>"]
edition = "2021"
@@ -7,19 +7,21 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.7.1", features = ["router"] }
dioxus = { version = "0.7.3", features = ["router"] }
serde = "1.0.219"
serde_repr = "0.1.20"
tonic = { version = "*", default-features = false, features = [
tonic = { version = "0.14.2", default-features = false, features = [
"codegen",
"prost",
] }
prost = "0.13"
tonic-web-wasm-client = "0.7"
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"
[build-dependencies]
tonic-build = { version = "*", default-features = false, features = ["prost"] }
tonic-prost-build = { version = "0.14.2"}
dotenv = "0.15.0"
[features]