cap-rs 0.0.0

Umbrella crate for the CAP (CLI Agent Protocol) Rust reference implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Placeholder. Real implementation is in progress.
//!
//! See <https://cap-protocol.org> for the protocol specification and
//! <https://github.com/rsclaw-ai/cap-protocol> for the source repository.

/// Name of this crate at build time.
pub const CRATE_NAME: &str = env!("CARGO_PKG_NAME");

/// Version of this crate at build time.
pub const CRATE_VERSION: &str = env!("CARGO_PKG_VERSION");

/// CAP protocol version targeted by this crate.
pub const PROTOCOL_VERSION: &str = "cap-protocol/v1";