[package]
name = "jiff-sqlx"
version = "0.2.0"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
license = "Unlicense OR MIT"
homepage = "https://github.com/BurntSushi/jiff/tree/master/crates/jiff-sqlx"
repository = "https://github.com/BurntSushi/jiff"
documentation = "https://docs.rs/jiff-sqlx"
description = "Integration for Jiff with SQLx."
categories = ["date-and-time"]
keywords = ["date", "time", "jiff", "sqlx", "zone"]
edition = "2021"
rust-version = "1.94"
include = ["/src/*.rs", "/*.dat", "COPYING", "LICENSE-MIT", "UNLICENSE"]
[workspace]
[lib]
name = "jiff_sqlx"
bench = false
path = "src/lib.rs"
[features]
default = []
postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]
[dependencies]
jiff = { version = "0.2.0", path = "../..", default-features = false, features = ["std"] }
sqlx = { version = "0.9.0", default-features = false }
[dev-dependencies]
jiff = { version = "0.2.0", path = "../..", default-features = true }