[Rust] tonic-build를 사용해 ProtoBuf 파일 컴파일하기
Protocol Buffer Compiler 설치 linux 환경 기반 $ sudo apt install -y protobuf-compiler $ protoc --version libprotoc 3.12.4 ProtoBuf 파일 작성 proto/greet.proto syntax="proto3"; package greet; message Greeting { string first_name = 1; string last_name = 2; } service GreetService { rpc Greet(Greeting) returns (Greeting) {} } tonic-build로 ProtoBuf 파일 컴파일하기 Cargo.toml 파일에 build dependency 추가 [package] name = "..
Rust/코딩 하기
2023. 12. 26. 18:39