1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/// Include generated proto server and client items. /// /// You must specify the gRPC package name. /// /// ```rust,ignore /// mod pb { /// tonic::include_proto!("helloworld"); /// } /// ``` /// /// # Note: /// **This only works if the tonic-build output directory has been unmodified**. /// The default output directory is set to the [`OUT_DIR`] environment variable. /// If the output directory has been modified, the following pattern may be used /// instead of this macro. /// /// ```rust,ignore /// mod pb { /// include!("/relative/protobuf/directory/helloworld.rs"); /// } /// ``` /// You can also use a custom environment variable using the following pattern. /// ```rust,ignore /// mod pb { /// include!(concat!(env!("PROTOBUFS"), "/helloworld.rs")); /// } /// ``` /// /// [`OUT_DIR`]: https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts #[macro_export] macro_rules! include_proto { ($package: tt) => { include!(concat!(env!("OUT_DIR"), concat!("/", $package, ".rs"))); }; }