vantage 0.2.0

A type-safe, ergonomic database toolkit for Rust that focuses on developer productivity without compromising performance. It allows you to work with your database using Rust's strong type system while abstracting away the complexity of SQL queries.
Documentation
[dependencies.anyhow]
version = "1.0.82"

[dependencies.chrono]
features = ["serde"]
version = "0.4.38"

[dependencies.env_logger]
version = "0.11.5"

[dependencies.futures]
version = "0.3.30"

[dependencies.indexmap]
features = ["serde"]
version = "2.2.6"

[dependencies.log]
version = "0.4.22"

[dependencies.rust_decimal]
features = ["db-postgres"]
version = "1"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
features = ["preserve_order", "raw_value", "arbitrary_precision"]
version = "1"

[dependencies.serde_with]
features = ["chrono"]
version = "3.11.0"

[dependencies.sqlx]
default-features = false
features = ["json", "postgres", "sqlite", "runtime-tokio"]
version = "0.8.2"

[dependencies.tokio]
features = ["full"]
version = "1"

[dependencies.tokio-postgres]
features = ["with-serde_json-1"]
version = "0.7.12"

[dependencies.tracing]
version = "0.1.41"

[dependencies.uuid]
features = ["serde"]
version = "1.11.0"

[dev-dependencies.pretty_assertions]
version = "1.4.0"

[features]

[lib]
doctest = false
name = "vantage"
path = "src/lib.rs"

[package]
authors = ["Romans Malinovskis <me@nearly.guru>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A type-safe, ergonomic database toolkit for Rust that focuses on developer productivity without compromising performance. It allows you to work with your database using Rust's strong type system while abstracting away the complexity of SQL queries."
documentation = "https://docs.rs/vantage"
edition = "2021"
homepage = "https://romaninsh.github.io/vantage"
license = "MIT OR Apache-2.0"
name = "vantage"
readme = "README.md"
repository = "https://github.com/romaninsh/vantage"
version = "0.2.0"

[[test]]
name = "types_test"
path = "tests/types_test.rs"