meta: initial commit (archival)

This commit is contained in:
2023-12-27 15:52:57 -05:00
commit 92c52a4dc0
7 changed files with 1275 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "trying-tonic"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "tonic-server"
path = "src/bin/server.rs"
[[bin]]
name = "tonic-client"
path = "src/bin/client.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
prost = "0.12.1"
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
tonic = { version = "0.10.2", features = ["tls", "gzip"] }
[build-dependencies]
tonic-build = "0.10.2"