mirror of
https://github.com/hexedtech/codemp-proto.git
synced 2024-12-23 13:54:53 +01:00
alemi
403200d6bc
reduce tonic features, add feature flags to compile only server, client, both or neither
34 lines
778 B
Rust
34 lines
778 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
let server = {
|
|
#[cfg(feature = "server")] { true }
|
|
#[cfg(not(feature = "server"))] { false }
|
|
};
|
|
|
|
let client = {
|
|
#[cfg(feature = "client")] { true }
|
|
#[cfg(not(feature = "client"))] { false }
|
|
};
|
|
|
|
let transport = {
|
|
#[cfg(any(feature = "server", feature = "client"))] { true }
|
|
#[cfg(not(any(feature = "server", feature = "client")))] { false }
|
|
};
|
|
|
|
Ok
|
|
(tonic_build::configure()
|
|
.build_server(server)
|
|
.build_client(client)
|
|
.build_transport(transport)
|
|
.compile_protos(
|
|
&[
|
|
"proto/common.proto",
|
|
"proto/cursor.proto",
|
|
"proto/files.proto",
|
|
"proto/auth.proto",
|
|
"proto/session.proto",
|
|
"proto/workspace.proto",
|
|
"proto/buffer.proto",
|
|
],
|
|
&["proto"],
|
|
)?)
|
|
}
|