Home
last modified time | relevance | path

Searched refs:extern_path (Results 1 – 6 of 6) sorted by relevance

/tonic/
H A DCargo.toml18 "tests/extern_path/uuid",
20 "tests/extern_path/my_application",
H A DCHANGELOG.md591 * **build:** Add extern_path config support ([#223](https://github.com/hyperium/tonic/issues/223)) …
/tonic/tests/root-crate-path/
H A Dbuild.rs3 .extern_path(".foo.bar.baz.Animal", "crate::Animal") in main()
/tonic/tests/extern_path/my_application/
H A Dbuild.rs5 .extern_path(".uuid", "::uuid") in main()
/tonic/tests/wellknown-compiled/
H A Dbuild.rs3 config.extern_path(".google.protobuf.Empty", "()"); in main()
/tonic/tonic-build/src/
H A Dprost.rs25 extern_path: Vec::new(), in configure()
294 pub(crate) extern_path: Vec<(String, String)>, field
369 pub fn extern_path(mut self, proto_path: impl AsRef<str>, rust_path: impl AsRef<str>) -> Self { in extern_path() method
370 self.extern_path.push(( in extern_path()
662 for (proto_path, rust_path) in self.extern_path.iter() { in setup_config()
663 config.extern_path(proto_path, rust_path); in setup_config()