cap_rs/lib.rs
1//! Placeholder. Real implementation is in progress.
2//!
3//! See <https://cap-protocol.org> for the protocol specification and
4//! <https://github.com/rsclaw-ai/cap-protocol> for the source repository.
5
6/// Name of this crate at build time.
7pub const CRATE_NAME: &str = env!("CARGO_PKG_NAME");
8
9/// Version of this crate at build time.
10pub const CRATE_VERSION: &str = env!("CARGO_PKG_VERSION");
11
12/// CAP protocol version targeted by this crate.
13pub const PROTOCOL_VERSION: &str = "cap-protocol/v1";