mssql-types 0.6.0

SQL Server to Rust type mappings and conversions
Documentation
[[bench]]
harness = false
name = "types"
path = "benches/types.rs"

[dependencies.bytes]
version = "1.9"

[dependencies.chrono]
default-features = false
features = ["std"]
optional = true
version = "0.4"

[dependencies.encoding_rs]
optional = true
version = "0.8"

[dependencies.rust_decimal]
optional = true
version = "1.36"

[dependencies.serde_json]
optional = true
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.uuid]
features = ["v4"]
optional = true
version = "1.11"

[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.7"

[dev-dependencies.proptest]
version = "1.5"

[features]
chrono = ["dep:chrono"]
decimal = ["dep:rust_decimal"]
default = ["chrono", "uuid", "decimal"]
encoding = ["dep:encoding_rs"]
json = ["dep:serde_json"]
uuid = ["dep:uuid"]

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

[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "SQL Server to Rust type mappings and conversions"
edition = "2024"
keywords = ["sql-server", "types", "conversion"]
license = "MIT OR Apache-2.0"
name = "mssql-types"
readme = "README.md"
repository = "https://github.com/praxiomlabs/rust-mssql-driver"
rust-version = "1.85"
version = "0.6.0"

[package.metadata.cargo-machete]
ignored = ["proptest", "criterion"]

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