aigp 0.1.0

AIGP — AI Governance Proof. Open standard for proving your AI agents used the approved policies, prompts, and tools.
Documentation
//! # AIGP — AI Governance Proof
//!
//! Open standard for proving your AI agents used the approved
//! policies, prompts, and tools — every single time.
//!
//! - Website: <https://open-aigp.org>
//! - GitHub: <https://github.com/open-aigp/aigp>
//!
//! ## Status
//!
//! This crate is a namespace reservation. The full Rust SDK is coming soon.
//! See the [AIGP specification](https://open-aigp.org) for details.

/// AIGP SDK version.
pub const VERSION: &str = "0.1.0";

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

    #[test]
    fn version_is_set() {
        assert_eq!(VERSION, "0.1.0");
    }
}