degen-sql 0.2.8

A postgres database engine for rust that builds on top of tokio-postgres and deadpool
Documentation
[package]
name = "degen-sql"
version = "0.2.8"
 
edition = "2021" 
description = "A postgres database engine for rust that builds on top of tokio-postgres and deadpool"
license = "MIT"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

serde = { version = "1.0", features = ["derive"] } 
serde_json = "1.0.96"
tokio-postgres-migration = "0.1.0"
tokio-postgres = { version = "0.7.8" ,  features=["with-chrono-0_4","runtime"] } 
tokio = { version = "1.28.1", features = ["rt", "rt-multi-thread", "macros"] }
chrono = { version = "0.4", features = ["serde"] }

dotenvy = "0.15"
env_logger = "0.10.0"
log = "0.4.18"

thiserror = "1.0.49"
include_dir = "0.7.3"
inquire = "0.6.2"
deadpool-postgres = "0.14.1"
deadpool = "0.12.2"

# Optional dependencies
utoipa = { version = "5.3.1", optional = true }

[features]
# Define optional features
utoipa-schema = ["dep:utoipa"]


[[bin]]
name = "migrate"
path = "src/db/postgres/scripts/migrate.rs"

[[bin]]
name = "rollback_full"
path = "src/db/postgres/scripts/rollback_full.rs"