//! # agent-id-core
//!
//! Core identity primitives for the Agent Identity Protocol.
//!
//! This crate provides:
//! - Ed25519 key generation and management
//! - DID creation and parsing
//! - DID Document structure and signing
//! - JCS canonicalization and signing
//! - Delegation tokens
//! - Key lifecycle management (rotation, revocation)
//! - Interaction receipts
pub use Did;
pub use DidDocument;
pub use Error;
pub use ;
pub use ;
pub use ;
/// Result type for agent-id-core operations.
pub type Result<T> = Result;