[[bench]]
harness = false
name = "database_performance"
path = "benches/database_performance.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "postgres", "sqlite", "uuid", "chrono", "json"]
version = "0.8"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.40"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.10"
[dependencies.zoey-core]
version = "0.1.0"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.5"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.mockall]
version = "0.13"
[dev-dependencies.tokio-test]
version = "0.4"
[features]
default = []
hipaa = []
[lib]
name = "zoey_storage_sql"
path = "src/lib.rs"
[package]
authors = ["ZoeyOS Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous"]
description = "SQL database adapters (PostgreSQL, SQLite) for ZoeyAI"
edition = "2021"
keywords = ["database", "sqlite", "postgresql", "ai", "zoey"]
license = "MIT"
name = "zoey-storage-sql"
readme = "README.md"
repository = "https://github.com/Agent-Zoey/Zoey.git"
version = "0.1.1"
[[test]]
name = "plugin_migrations_sqlite"
path = "tests/plugin_migrations_sqlite.rs"
[[test]]
name = "postgres_integration_tests"
path = "tests/postgres_integration_tests.rs"
[[test]]
name = "sqlite_integration_tests"
path = "tests/sqlite_integration_tests.rs"