[package]
edition = "2024"
name = "rbdc"
version = "4.9.10"
authors = ["ce <zhuxiujia@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Rust SQL Toolkit and ORM Library. An async, pure Rust SQL crate featuring compile-time Dynamic SQL"
homepage = "https://rbatis.github.io/rbatis.io"
documentation = "https://rbatis.github.io/rbatis.io"
readme = "README.md"
keywords = [
"database",
"orm",
"mysql",
"postgres",
"sqlite",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/rbatis/rbatis"
[features]
default = ["tls-rustls"]
tls-native-tls = [
"native-tls",
"tokio-native-tls",
]
tls-rustls = [
"rustls",
"webpki-roots",
"rustls-pemfile",
"tokio-rustls",
]
[lib]
name = "rbdc"
path = "src/lib.rs"
[[test]]
name = "base"
path = "tests/base.rs"
[[test]]
name = "exec_decode"
path = "tests/exec_decode.rs"
[[test]]
name = "scan_test"
path = "tests/scan_test.rs"
[[test]]
name = "types"
path = "tests/types.rs"
[[test]]
name = "util"
path = "tests/util.rs"
[[bench]]
name = "exchange"
path = "benches/exchange.rs"
[dependencies.async-trait]
version = "0.1.56"
[dependencies.bigdecimal]
version = "0.4.1"
features = ["serde"]
[dependencies.bytes]
version = "1.1.0"
[dependencies.fastdate]
version = "0.3"
[dependencies.futures-channel]
version = "0.3.21"
features = [
"sink",
"alloc",
"std",
]
default-features = false
[dependencies.futures-core]
version = "0.3.19"
default-features = false
[dependencies.futures-util]
version = "0.3.21"
features = [
"alloc",
"sink",
]
[dependencies.itoa]
version = "1.0"
[dependencies.log]
version = "0.4"
[dependencies.lru]
version = "0.14.0"
[dependencies.memchr]
version = "2.5.0"
[dependencies.native-tls]
version = "0.2.10"
optional = true
[dependencies.rbs]
version = "4.8"
[dependencies.rustls]
version = "0.23.3"
features = ["ring"]
optional = true
default-features = false
[dependencies.rustls-pemfile]
version = "2.0.0"
optional = true
[dependencies.serde]
version = "1"
[dependencies.serde_bytes]
version = "0.11.6"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"sync",
"fs",
"net",
"rt",
"rt-multi-thread",
"time",
"io-util",
"macros",
]
[dependencies.tokio-native-tls]
version = "0.3.0"
optional = true
[dependencies.tokio-rustls]
version = "0.26.0"
features = ["ring"]
optional = true
default-features = false
[dependencies.uuid]
version = "1.1"
features = ["v4"]
[dependencies.webpki-roots]
version = "0.26.0"
optional = true