Sign in
apache
/
teaclave-crates
/
refs/heads/legacy
/
.
/
tonic
/
tests
/
root-crate-path
/
build.rs
blob: 45a84c7981f0e09ae0fae48aa5bec41670e39e63 [
file
] [
log
] [
blame
]
fn
main
()
->
Result
<(),
Box
<
dyn std
::
error
::
Error
>>
{
tonic_build
::
configure
()
.
extern_path
(
".foo.bar.baz.Animal"
,
"crate::Animal"
)
.
compile
(&[
"foo.proto"
],
&[
"."
])?;
Ok
(())
}