[package]
edition = "2024"
rust-version = "1.90"
name = "lash-postgres-store"
version = "0.1.0-alpha.63"
authors = ["Samuel Galanakis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL-backed durable storage for the lash agent runtime."
homepage = "https://samgalanakis.github.io/lash/"
documentation = "https://samgalanakis.github.io/lash/"
readme = "README.md"
keywords = [
"lash",
"agent",
"postgres",
"persistence",
"store",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/SamGalanakis/lash"
[lib]
name = "lash_postgres_store"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.lash-core]
version = "=0.1.0-alpha.63"
[dependencies.lashlang]
version = "=0.1.0-alpha.63"
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlx]
version = "0.8.6"
features = [
"runtime-tokio-rustls",
"postgres",
]
default-features = false
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.lash-core]
version = "=0.1.0-alpha.63"
features = ["testing"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]