Files
tonic/tonic-types/src/lib.rs
T
CameronandGitHub 6622bb1449 Update tonic logo (#508)
* Use fancy new logo

* Remove shell.nix
2021-01-05 16:03:33 -05:00

20 lines
529 B
Rust

//! A collection of useful protobuf types that can be used with `tonic`.
#![warn(
missing_debug_implementations,
missing_docs,
rust_2018_idioms,
unreachable_pub
)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
)]
#![doc(html_root_url = "https://docs.rs/tonic-types/0.1.0")]
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
mod pb {
include!(concat!(env!("OUT_DIR"), "/google.rpc.rs"));
}
pub use pb::Status;