idprova-core 0.1.1

Core library for IDProva — AI agent identity, delegation, and audit
Documentation
1
2
3
4
5
6
7
8
9
10
//! Agent Identity Documents (AIDs) — W3C DID compatible.
//!
//! An AID is a DID Document with IDProva-specific extensions for agent metadata,
//! config attestation, and trust level information.

pub mod builder;
pub mod document;

pub use builder::AidBuilder;
pub use document::{AgentMetadata, AidDocument, AidIdentifier, VerificationMethod};