openfga 0.1.0

Rust SDK for OpenFGA — the open-source authorization system
Documentation
//! # openfga
//!
//! Rust SDK for [OpenFGA](https://openfga.dev) — the open-source authorization system
//! based on Google's Zanzibar paper.
//!
//! > ⚠️ This crate is under active development. APIs are not yet stable.

/// Returns the current crate version.
pub fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn version_is_set() {
        assert!(!version().is_empty());
    }
}