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

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
.history/

1222
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

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"

3
build.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("proto/helloworld.proto")?;
}

16
proto/helloworld.proto Normal file
View File

@@ -0,0 +1,16 @@
syntax = "proto3";
package helloworld;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
// Request message contains the name to be greeted
string name = 1;
}
message HelloResponse {
// Reply contains the greeting message
string message = 1;
}

3
src/bin/client.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

7
src/bin/server.rs Normal file
View File

@@ -0,0 +1,7 @@
mod hello_world {
}
fn main() {
}