blob: ee2ed9b280a5bcc8baa3ad6d4474b88985b27fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! Core
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(
missing_docs,
rustdoc::broken_intra_doc_links,
missing_debug_implementations
)]
/// Protobuf types
#[cfg(feature = "auth")]
pub mod google;
pub mod auth;
|