[package]
edition = "2024"
name = "arium-pool"
version = "0.1.3"
authors = ["Tony Bierman <tonybierman@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile-time sqlx backend selection (Pool/DbBackend/DbConnection) shared by the arium engine and arium-authz."
homepage = "https://github.com/tonybierman/arium"
readme = "README.md"
keywords = [
"sqlx",
"sqlite",
"postgres",
"database",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tonybierman/arium"
[features]
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]
[lib]
name = "arium_pool"
path = "src/lib.rs"
[dependencies.sqlx]
version = "0.8.6"
features = [
"macros",
"runtime-tokio",
]
default-features = false