feat: add prost, but build failed

This commit is contained in:
2020-12-27 14:12:43 +08:00
parent ec29c2368c
commit cd4a02f513
6 changed files with 366 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
syntax = "proto3";
package helloworld;
message Test {
string sample = 1;
}

View File

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