sal/postgresclient/Cargo.toml
Mahmoud-Emad b737cd6337
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
feat: convert postgresclient module to independent sal-postgresclient package
- Move src/postgresclient/ to postgresclient/ package structure
- Add comprehensive test suite (28 tests) with real PostgreSQL operations
- Maintain Rhai integration with all 10 wrapper functions
- Update workspace configuration and dependencies
- Add complete documentation with usage examples
- Remove old module and update all references
- Ensure zero regressions in existing functionality

Closes: postgresclient monorepo conversion
2025-06-23 03:12:26 +03: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"