mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-20 16:43:53 +01:00
30 lines
1.0 KiB
TOML
30 lines
1.0 KiB
TOML
[package]
|
|
name = "yaak-grpc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.79"
|
|
async-recursion = "1.1.1"
|
|
dunce = "1.0.4"
|
|
hyper = "1.5.2"
|
|
hyper-rustls = { version = "0.27.5", default-features = false, features = ["http2"] }
|
|
hyper-util = { version = "0.1.10", default-features = false, features = ["client-legacy"] }
|
|
rustls = { version = "0.23.21", default-features = false, features = ["custom-provider", "ring"] }
|
|
rustls-platform-verifier = "0.5.0"
|
|
log = "0.4.20"
|
|
md5 = "0.7.0"
|
|
prost = "0.13.4"
|
|
prost-reflect = { version = "0.14.4", default-features = false, features = ["serde", "derive"] }
|
|
prost-types = "0.13.4"
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
serde_json = "1.0.113"
|
|
tauri = { workspace = true }
|
|
tauri-plugin-shell = { workspace = true }
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "fs"] }
|
|
tokio-stream = "0.1.14"
|
|
tonic = { version = "0.12.3", default-features = false, features = ["transport"] }
|
|
tonic-reflection = "0.12.3"
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|