olai-store 0.0.6

Generic, TAO-inspired object and association store with field-role enforcement
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "olai-store"
version = "0.0.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic, TAO-inspired object and association store with field-role enforcement"
homepage = "https://github.com/open-lakehouse/trestle"
readme = "README.md"
keywords = [
    "lakehouse",
    "data-platform",
    "protobuf",
    "codegen",
    "resource-store",
]
license = "Apache-2.0"
repository = "https://github.com/open-lakehouse/trestle"
resolver = "2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = []
encryption = [
    "dep:aes-gcm",
    "dep:zeroize",
]
postgres = [
    "dep:sqlx",
    "sqlx/postgres",
    "sqlx/runtime-tokio",
    "sqlx/migrate",
]
sqlite = [
    "dep:sqlx",
    "sqlx/sqlite",
    "sqlx/runtime-tokio",
    "sqlx/migrate",
]
sqlx = ["dep:sqlx"]

[lib]
name = "olai_store"
path = "src/lib.rs"

[dependencies.aes-gcm]
version = "0.10"
optional = true

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.bytes]
version = "1.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.futures]
version = "0.3"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlx]
version = "0.8"
features = [
    "uuid",
    "macros",
    "chrono",
    "json",
]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false

[dependencies.tracing]
version = "0.1"
features = ["log"]

[dependencies.uuid]
version = "1"
features = [
    "serde",
    "v7",
]

[dependencies.zeroize]
version = "1.8"
features = [
    "derive",
    "derive",
]
optional = true

[dev-dependencies.tokio]
version = "1.29.0"
features = [
    "rt",
    "macros",
]

[dev-dependencies.tracing-test]
version = "0.2"

[dev-dependencies.uuid]
version = "1"
features = ["v7"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docsrs)"]