[package]
edition = "2021"
rust-version = "1.89"
name = "oxisql-core"
version = "0.3.1"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core traits and types for OxiSQL — the COOLJAPAN Pure-Rust SQL facade"
readme = "README.md"
keywords = [
"database",
"sql",
"pure-rust",
"cooljapan",
"oxisql",
]
categories = [
"database",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxisql"
[features]
chrono = ["dep:chrono"]
time = ["dep:time"]
tracing = ["dep:tracing"]
[lib]
name = "oxisql_core"
path = "src/lib.rs"
[[test]]
name = "value_proptest"
path = "tests/value_proptest.rs"
[[bench]]
name = "value_benchmarks"
path = "benches/value_benchmarks.rs"
harness = false
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4"
features = ["std"]
optional = true
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.time]
version = "0.3.51"
features = [
"std",
"formatting",
"macros",
]
optional = true
default-features = false
[dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.criterion]
version = "0.8.2"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.proptest]
version = "1.11.0"
features = ["std"]
default-features = false
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"std",
]
default-features = false