do it the right way
This commit is contained in:
parent
f259cddb7d
commit
5b49d2fcfd
6
build.rs
6
build.rs
|
@ -1,9 +1,5 @@
|
|||
fn main() {
|
||||
prost_build::compile_protos(&[
|
||||
"palmdef/palm.proto",
|
||||
"palmdef/encrypted_reflection.proto",
|
||||
"palmdef/encrypted_tunnel.proto",
|
||||
"palmdef/unencrypted_reflection.proto",
|
||||
"palmdef/unencrypted_tunnel.proto"
|
||||
"palmdef/palm.proto"
|
||||
], &["palmdef/"]).unwrap();
|
||||
}
|
|
@ -84,10 +84,10 @@ syntax = "proto3";
|
|||
|
||||
package palmdef;
|
||||
|
||||
import "unencrypted_reflection.proto";
|
||||
import "encrypted_reflection.proto";
|
||||
import "unencrypted_tunnel.proto";
|
||||
import "encrypted_tunnel.proto";
|
||||
import public "unencrypted_reflection.proto";
|
||||
import public "encrypted_reflection.proto";
|
||||
import public "unencrypted_tunnel.proto";
|
||||
import public "encrypted_tunnel.proto";
|
||||
|
||||
// The core message, used to serialize all other packets.
|
||||
message PalmPacket {
|
||||
|
|
Loading…
Reference in New Issue