[package]
edition = "2024"
name = "agrum"
version = "0.4.0"
authors = ["Grégoire HUBERT <hubert.greg@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This is an OMM database layer."
readme = "README.md"
keywords = [
"database",
"postgres",
]
license-file = "LICENSE.txt"
repository = "https://github.com/chanmix51/agrum"
[lib]
name = "agrum"
path = "src/lib.rs"
[[test]]
name = "composite"
path = "tests/composite.rs"
[[test]]
name = "join"
path = "tests/join.rs"
[[test]]
name = "model"
path = "tests/model.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.bb8]
version = "0.9.1"
[dependencies.bb8-postgres]
version = "0.9.0"
[dependencies.futures-core]
version = "0.3.31"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.postgres-types]
version = "0.2.12"
features = ["derive"]
[dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"parking_lot",
]
[dependencies.tokio-postgres]
version = "0.7.16"
features = [
"array-impls",
"with-chrono-0_4",
"with-serde_json-1",
"with-uuid-1",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.dotenvy]
version = "0.15"