[package]
edition = "2021"
name = "nextsql-backend-rust-runtime"
version = "0.3.3"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime support library for NextSQL generated Rust code"
homepage = "https://github.com/shirakawayohane/next-sql"
readme = false
license = "MIT"
repository = "https://github.com/shirakawayohane/next-sql"
[features]
backend-tokio-postgres = [
"dep:tokio-postgres",
"dep:bytes",
"rust_decimal/db-tokio-postgres",
]
default = ["backend-tokio-postgres"]
[lib]
name = "nextsql_backend_rust_runtime"
path = "src/lib.rs"
[dependencies.bytes]
version = "1"
optional = true
[dependencies.chrono]
version = "0.4"
[dependencies.rust_decimal]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-uuid-1",
"with-chrono-0_4",
"with-serde_json-1",
]
optional = true
[dependencies.uuid]
version = "1"
features = ["v4"]