[package]
edition = "2021"
name = "iridium_server"
version = "0.1.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TDS 7.4 server for Iridium SQL"
homepage = "https://github.com/celsowm/iridium-sql"
readme = "README.md"
keywords = [
"tds",
"sql-server",
"database",
"server",
]
categories = [
"database",
"network-programming",
]
license = "MIT"
repository = "https://github.com/celsowm/iridium-sql"
[lib]
name = "iridium_server"
path = "src/lib.rs"
[[bin]]
name = "compat-query"
path = "bin/compat-query.rs"
[[bin]]
name = "iridium-server"
path = "bin/main.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "catalog_rpc"
path = "tests/catalog_rpc.rs"
[[test]]
name = "compatibility"
path = "tests/compatibility.rs"
[[test]]
name = "crud"
path = "tests/crud.rs"
[[test]]
name = "cursor_compare_test"
path = "tests/cursor_compare_test.rs"
[[test]]
name = "cursor_compat_test"
path = "tests/cursor_compat_test.rs"
[[test]]
name = "cursor_quick_test"
path = "tests/cursor_quick_test.rs"
[[test]]
name = "playground"
path = "tests/playground.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "ssms_object_explorer_contract"
path = "tests/ssms_object_explorer_contract.rs"
[dependencies.bytes]
version = "1"
[dependencies.env_logger]
version = "0.11"
[dependencies.iridium_core]
version = "0.1.5"
[dependencies.log]
version = "0.4"
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rcgen]
version = "0.13"
features = [
"pem",
"crypto",
]
[dependencies.regex]
version = "1"
[dependencies.rustls]
version = "0.23"
[dependencies.rustls-pemfile]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"io-util",
"macros",
"sync",
]
[dependencies.tokio-rustls]
version = "0.26"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tiberius]
version = "0.11"
features = [
"tokio",
"tds73",
"chrono",
"rustls",
]
default-features = false
[dev-dependencies.tokio-util]
version = "0.7"
features = ["compat"]