├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── client.csr ├── client.key ├── client.pem ├── my_ca.key ├── my_ca.pem ├── my_ca.srl ├── proto └── say.proto ├── server.csr ├── server.ext ├── server.key ├── server.pem └── src ├── client.rs ├── hello.rs └── server.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/README.md -------------------------------------------------------------------------------- /client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/client.csr -------------------------------------------------------------------------------- /client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/client.key -------------------------------------------------------------------------------- /client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/client.pem -------------------------------------------------------------------------------- /my_ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/my_ca.key -------------------------------------------------------------------------------- /my_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/my_ca.pem -------------------------------------------------------------------------------- /my_ca.srl: -------------------------------------------------------------------------------- 1 | 0E6940C426E3D8651BE982BE8A01DA6C50AF99BE 2 | -------------------------------------------------------------------------------- /proto/say.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/proto/say.proto -------------------------------------------------------------------------------- /server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/server.csr -------------------------------------------------------------------------------- /server.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/server.ext -------------------------------------------------------------------------------- /server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/server.key -------------------------------------------------------------------------------- /server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/server.pem -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/hello.rs: -------------------------------------------------------------------------------- 1 | tonic::include_proto!("hello"); 2 | -------------------------------------------------------------------------------- /src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anshulrgoyal/rust-grpc-demo/HEAD/src/server.rs --------------------------------------------------------------------------------