2025-06-08 14:14:32 -04:00
|
|
|
[package]
|
|
|
|
name = "oiseau"
|
|
|
|
description = "Super simple SQL helper"
|
|
|
|
authors = ["trisuaso <me@trisua.com>"]
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
homepage = "https://bugs.tetratto.com/trisua/tetratto"
|
2025-06-09 11:38:28 -04:00
|
|
|
version = "0.1.2"
|
2025-06-08 14:14:32 -04:00
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
postgres = ["dep:tokio-postgres", "dep:bb8-postgres"]
|
|
|
|
sqlite = ["dep:rusqlite"]
|
|
|
|
redis = ["dep:redis"]
|
|
|
|
default = ["sqlite", "redis"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
|
|
rusqlite = { version = "0.36.0", optional = true }
|
|
|
|
tokio-postgres = { version = "0.7.13", optional = true }
|
|
|
|
bb8-postgres = { version = "0.9.0", optional = true }
|
|
|
|
redis = { version = "0.31.0", features = [
|
|
|
|
"aio",
|
|
|
|
"tokio-comp",
|
|
|
|
], optional = true }
|