herolib_rust/packages/clients/postgresclient/Cargo.toml
2025-08-05 15:33:03 +02:00

35 lines
864 B
TOML

[package]
name = "sal-postgresclient"
version = "0.1.0"
edition = "2021"
authors = ["PlanetFirst <info@incubaid.com>"]
description = "SAL PostgreSQL Client - PostgreSQL client wrapper with connection management and Rhai integration"
repository = "https://git.threefold.info/herocode/sal"
license = "Apache-2.0"
keywords = ["postgresql", "database", "client", "connection-pool", "rhai"]
categories = ["database", "api-bindings"]
[dependencies]
# PostgreSQL client dependencies
postgres = "0.19.4"
postgres-types = "0.2.5"
tokio-postgres = "0.7.8"
# Connection pooling
r2d2 = "0.8.10"
r2d2_postgres = "0.18.2"
# Utility dependencies
lazy_static = "1.4.0"
thiserror = "2.0.12"
# Rhai scripting support
rhai = { version = "1.12.0", features = ["sync"] }
# SAL dependencies
sal-virt = { path = "../virt" }
[dev-dependencies]
tempfile = "3.5"
tokio-test = "0.4.4"