[package]
edition = "2024"
name = "agent-proxy-rust-storage"
version = "1.0.0"
authors = ["baoyx <baoyx19870908@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Backend-agnostic storage trait and data types for agent-proxy-rust"
homepage = "https://github.com/TokenFleet-AI/agent-proxy-rust"
documentation = "https://docs.rs/agent-proxy-rust"
readme = false
keywords = [
"storage",
"trait",
"sqlite",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/TokenFleet-AI/agent-proxy-rust"
[lib]
name = "agent_proxy_rust_storage"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.142"
[dependencies.thiserror]
version = "2.0.18"
[lints.clippy]
expect_used = "warn"
panic = "warn"
pedantic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "forbid"