blob: bbdcfdb652eecb78c62056633ce19e6efb570136 [file] [log] [blame]
Chih-Hung Hsieh92ff6052020-06-10 20:18:39 -07001use Customize;
2
3/// Path to `protobuf` crate, different when `.proto` file is
4/// used inside or outside of protobuf crate.
5pub(crate) fn protobuf_crate_path(customize: &Customize) -> &str {
6 match customize.inside_protobuf {
Haibo Huangba676d32020-08-12 13:52:13 -07007 Some(true) => "crate",
Chih-Hung Hsieh92ff6052020-06-10 20:18:39 -07008 _ => "::protobuf",
9 }
10}