[package]
edition = "2021"
name = "ankurah-storage-postgres"
version = "0.7.21"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ankurah storage engine using Postgres"
homepage = "https://github.com/ankurah/ankurah"
documentation = "https://docs.rs/ankurah-storage-postgres"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/ankurah/ankurah"
[lib]
name = "ankurah_storage_postgres"
path = "src/lib.rs"
[[test]]
name = "add_event"
path = "tests/add_event.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "json_property"
path = "tests/json_property.rs"
[[test]]
name = "jsonb_semantics"
path = "tests/jsonb_semantics.rs"
[[test]]
name = "predicate_checks"
path = "tests/predicate_checks.rs"
[[test]]
name = "property_backends"
path = "tests/property_backends.rs"
[[test]]
name = "repeatable_read"
path = "tests/repeatable_read.rs"
[[test]]
name = "rt165"
path = "tests/rt165.rs"
[[test]]
name = "rt176"
path = "tests/rt176.rs"
[[test]]
name = "undefined_column"
path = "tests/undefined_column.rs"
[[test]]
name = "where_clause"
path = "tests/where_clause.rs"
[dependencies.ankql]
version = "=0.7.21"
[dependencies.ankurah-core]
version = "=0.7.21"
[dependencies.ankurah-proto]
version = "=0.7.21"
features = ["postgres"]
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bb8]
version = "0.9"
[dependencies.bb8-postgres]
version = "0.9"
[dependencies.bincode]
version = "1.3"
[dependencies.bytes]
version = "1.5"
[dependencies.futures-util]
version = "0.3"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.36"
features = ["full"]
[dependencies.tokio-postgres]
version = "0.7"
features = ["with-serde_json-1"]
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1.1"
[dev-dependencies.ankurah]
version = "=0.7.21"
features = ["derive"]
[dev-dependencies.ctor]
version = "0.2"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.testcontainers]
version = "0.23"
features = ["reusable-containers"]
[dev-dependencies.testcontainers-modules]
version = "0.11.4"
features = ["postgres"]
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"