cargo-ai 0.2.0

Build lightweight AI agents with Cargo. Powered by Rust. Declared in JSON.
1
2
3
4
5
6
7
8
9
//! Secret-material storage for Cargo-AI runtime credentials.
//!
//! This module keeps secret values out of `config.toml` and routes reads/writes
//! through an explicit secret-store mode (`file` or `keychain`) with legacy
//! read compatibility for older configs that do not yet set a mode.

pub mod migration;
pub mod openai_oauth;
pub mod store;