[package]
edition = "2021"
name = "tianshu-postgres"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL CaseStore + StateStore adapter for workflow-engine"
homepage = "https://github.com/Desicool/Tianshu-rs"
documentation = "https://docs.rs/tianshu-postgres"
readme = "README.md"
keywords = [
"workflow",
"postgres",
"database",
"async",
"orchestration",
]
categories = [
"asynchronous",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/Desicool/Tianshu-rs"
[lib]
name = "tianshu_postgres"
path = "src/lib.rs"
[[test]]
name = "postgres_store_tests"
path = "tests/postgres_store_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.deadpool-postgres]
version = "0.12"
[dependencies.native-tls]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tianshu]
version = "0.1.0"
package = "tianshu"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.tokio-native-tls]
version = "0.3"
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-serde_json-1",
"with-chrono-0_4",
"with-uuid-1",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.35"
features = ["full"]
[dev-dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]