odbc-api 20.1.1

Write ODBC Applications in (mostly) safe Rust.
Documentation
[[bench]]
harness = false
name = "benches"
path = "benches/benches.rs"

[dependencies.atoi]
version = "2.0.0"

[dependencies.log]
version = "0.4.29"

[dependencies.odbc-api-derive]
optional = true
version = "12.0.8"

[dependencies.odbc-sys]
default-features = false
features = ["odbc_version_3_50"]
version = "0.28.0"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.widestring]
version = "1.2.1"

[dev-dependencies.anyhow]
version = "1.0.100"

[dev-dependencies.async-stream]
version = "0.3.6"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"

[dev-dependencies.csv]
version = "1.4.0"

[dev-dependencies.env_logger]
version = "0.11.8"

[dev-dependencies.stdext]
version = "0.3.3"

[dev-dependencies.tempfile]
version = "3.24.0"

[dev-dependencies.test-case]
version = "3.3.1"

[dev-dependencies.tokio]
features = ["rt", "macros", "time"]
version = "1.49.0"

[dev-dependencies.tokio-stream]
version = "0.1.18"

[features]
default = ["odbc_version_3_80", "prompt"]
derive = ["dep:odbc-api-derive"]
iodbc = ["odbc_version_3_5", "narrow", "odbc-sys/iodbc"]
narrow = []
odbc_version_3_5 = ["odbc-sys/odbc_version_3_50"]
odbc_version_3_80 = ["odbc-sys/odbc_version_3_80"]
prompt = ["dep:winit"]
vendored-unix-odbc = ["odbc-sys/vendored-unix-odbc"]
wide = []

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

[package]
authors = ["Markus Klein"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "database"]
description = "Write ODBC Applications in (mostly) safe Rust."
documentation = "https://docs.rs/odbc-api/"
edition = "2024"
keywords = ["odbc", "database", "sql"]
license = "MIT"
name = "odbc-api"
readme = "Readme.md"
repository = "https://github.com/pacman82/odbc-api"
resolver = "2"
version = "20.1.1"

[package.metadata.docs.rs]
features = ["derive", "odbc_version_3_80"]

[target."cfg(windows)".dependencies.winit]
default-features = false
features = ["rwh_06"]
optional = true
version = "0.30.12"

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

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

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

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