nusadb 0.1.0

Fast, stable native Rust driver and ORM for NusaDB (Nusa Wire Protocol 1.1).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "nusadb"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast, stable native Rust driver and ORM for NusaDB (Nusa Wire Protocol 1.1)."
readme = "README.md"
keywords = [
    "nusadb",
    "database",
    "sql",
    "driver",
    "orm",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/nusadb/rust"

[features]
async = ["dep:tokio"]
async-tls = [
    "async",
    "tls",
    "dep:tokio-rustls",
]
default = []
tls = [
    "dep:rustls",
    "dep:rustls-pemfile",
    "dep:webpki-roots",
]

[lib]
name = "nusadb"
path = "src/lib.rs"

[[test]]
name = "async_integration"
path = "tests/async_integration.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.base64]
version = "0.22"

[dependencies.hmac]
version = "0.12"

[dependencies.pbkdf2]
version = "0.12"
features = ["hmac"]
default-features = false

[dependencies.rand]
version = "0.8"

[dependencies.rustls]
version = "0.23"
features = [
    "ring",
    "std",
    "logging",
]
optional = true
default-features = false

[dependencies.rustls-pemfile]
version = "2"
optional = true

[dependencies.sha2]
version = "0.10"

[dependencies.subtle]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "io-util",
    "rt",
    "time",
    "sync",
]
optional = true
default-features = false

[dependencies.tokio-rustls]
version = "0.26"
features = ["ring"]
optional = true
default-features = false

[dependencies.webpki-roots]
version = "0.26"
optional = true

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"