aerro 0.1.0

Cross-service gRPC error framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Cross-service gRPC errors for Rust.
//!
//! `aerro` is an early-stage crate. The public API is intentionally small
//! while the error model is being designed.

/// Current crate version.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

#[cfg(test)]
mod tests {
    #[test]
    fn exposes_crate_version() {
        assert_eq!(crate::VERSION, env!("CARGO_PKG_VERSION"));
    }
}