feat(proto): add example client

This commit is contained in:
Jindřich Moravec 2023-12-23 23:40:31 +01:00
parent 75b067762e
commit 0318169876
4 changed files with 118 additions and 0 deletions

11
client/Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.35.1", features = ["full"] }
anyhow = "1.0.76"
proto = { path = "../proto" }