nominal_api/
lib.rs

1mod conjure {
2    include!(concat!(env!("OUT_DIR"), "/conjure/mod.rs"));
3}
4
5
6#[cfg(all(feature = "tonic", not(feature = "_build")))]
7mod proto;
8
9#[cfg(all(feature = "tonic", not(feature = "_build")))]
10pub mod tonic {
11    pub use crate::proto::*;
12}
13
14pub use conjure::*;