shithub
zephyrfs
/
zephyrfs-node
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
zephyrfs-node
Public
Watch
0
Fork
0
Star
0
zephyrfs-node
/
build.rs
Rust · 284 bytes
Raw
Blame
History
1
fn
main
()
->
Result
<
(),
Box
<
dyn
std
::
error
::
Error
>>
{
2
tonic_build
::
configure
()
3
.
build_server
(
true
)
4
.
build_client
(
true
)
5
.
compile
(
6
&
[
"../zephyrfs-proto/protobuff/node.proto"
],
7
&
[
"../zephyrfs-proto/protobuff"
],
8
)
?
;
9
Ok
(())
10
}