rbatis-core 1.7.0

Core of rbatis, the rust SQL toolkit. Not intended to be used directly.
[package]
name = "rbatis-core"
version = "1.7.0"
description = "Core of rbatis, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
edition = "2018"
authors = [
    "zxj <zhuxiujia@qq.com>"
]
documentation = "https://rbatis.github.io/rbatis.io/#/"
repository = "https://github.com/rbatis/rbatis"
homepage = "https://rbatis.github.io/rbatis.io/#/"

[features]
default = ["runtime-async-std"]
unstable = []
# intended mainly for CI and docs
all = ["all-database", "all-type"]
all-database = ["mysql", "sqlite", "postgres"]
all-type = ["bigdecimal", "json", "chrono", "ipnetwork", "uuid"]
# we need a feature which activates `num-bigint` as well because
# `bigdecimal` uses types from it but does not reexport (tsk tsk)
bigdecimal = ["bigdecimal_", "num-bigint"]
postgres = ["md-5", "sha2", "base64", "sha-1", "rand", "hmac", "futures-channel/sink", "futures-util/sink","geo-types"]
json = ["serde", "serde_json"]
mysql = ["sha-1", "sha2", "generic-array", "num-bigint", "base64", "digest", "rand"]
sqlite = ["libsqlite3-sys"]
runtime-async-std = ["async-std"]
runtime-tokio = ["tokio"]
# intended for internal benchmarking, do not use
bench = []

[dependencies]
async-std = { version = "1.6", optional = true }
async-stream = { version = "0.2.1", default-features = false }
base64 = { version = "0.12.0", default-features = false, optional = true, features = ["std"] }
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal", features = ["serde"] }
num-bigint = { version = "0.3", default-features = false, optional = true, features = ["std"] }
bitflags = { version = "1.2.1", default-features = false }
byteorder = { version = "1.3.4", default-features = false, features = ["std"] }
chrono = { version = "0.4.10", default-features = false, features = ["clock"], optional = true }
crossbeam-queue = "0.2.3"
crossbeam-utils = { version = "0.7.2", default-features = false }
digest = { version = "0.8.1", default-features = false, optional = true, features = ["std"] }
futures-channel = { version = "0.3.4", default-features = false, features = ["alloc", "std"] }
futures-core = { version = "0.3.4", default-features = false }
futures-util = { version = "0.3.4", default-features = false }
generic-array = { version = "0.12.3", default-features = false, optional = true }
hex = "0.4.2"
hmac = { version = "0.7.1", default-features = false, optional = true }
ipnetwork = { version = "0.16.0", default-features = false, optional = true }
geo-types = {version = "0.6.0", features = ["serde"], optional = true }
libc = "0.2.68"
log = { version = "0.4.8", default-features = false }
md-5 = { version = "0.8.0", default-features = false, optional = true }
memchr = { version = "2.3.3", default-features = false }
percent-encoding = "2.1.0"
rand = { version = "0.7.3", default-features = false, optional = true, features = ["std"] }
sha-1 = { version = "0.8.2", default-features = false, optional = true }
sha2 = { version = "0.8.1", default-features = false, optional = true }
tokio = { version = "0.2", default-features = false, features = ["dns", "fs", "time", "tcp"], optional = true }
url = { version = "2.1.1", default-features = false }
uuid = { version = "0.8.1", default-features = false, optional = true, features = ["std"] }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", features = ["raw_value"], optional = true }

# <https://github.com/jgallagher/rusqlite/tree/master/libsqlite3-sys>
[dependencies.libsqlite3-sys]
version = "0.17.1"
optional = true
default-features = false
features = ["pkg-config", "vcpkg", "bundled"]