Hooked up test call from frontend!

This commit is contained in:
Gregory Schier
2024-01-29 20:50:43 -08:00
parent 219a6b78da
commit dbdce4cf9a
9 changed files with 821 additions and 9 deletions

18
src-tauri/grpc/Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "grpc"
version = "0.1.0"
edition = "2021"
[dependencies]
tonic = "0.10.2"
prost = "0.12"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tonic-reflection = "0.10.2"
tokio-stream = "0.1.14"
prost-types = "0.12.3"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
prost-reflect = { version = "0.12.0", features = ["serde", "derive"] }
log = "0.4.20"
once_cell = { version = "1.19.0", features = [] }
anyhow = "1.0.79"