35 lines
956 B
TOML
35 lines
956 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 = { workspace = true }
|
|
postgres-types = { workspace = true }
|
|
tokio-postgres = { workspace = true }
|
|
|
|
# Connection pooling
|
|
r2d2 = { workspace = true }
|
|
r2d2_postgres = { workspace = true }
|
|
|
|
# Utility dependencies
|
|
lazy_static = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Rhai scripting support
|
|
rhai = { workspace = true }
|
|
|
|
# SAL dependencies
|
|
sal-virt = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
tokio-test = { workspace = true }
|