[package]
edition = "2024"
rust-version = "1.85"
name = "coil-data"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data access and persistence primitives for the Coil framework."
homepage = "https://coil.rs"
documentation = "https://coil.rs/docs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/coil-framework/coil"
[lib]
name = "coil_data"
path = "src/lib.rs"
[dependencies.coil-config]
version = "0.1.1"
[dependencies.sqlx]
version = "0.7"
features = [
"postgres",
"runtime-tokio-rustls",
]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]