[package]
edition = "2021"
name = "powdb-server"
version = "0.14.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async TCP server for PowDB with a binary wire protocol — PowQL native, SQL frontend included"
homepage = "https://zvn-dev.github.io/powdb/"
documentation = "https://docs.rs/powdb-server"
readme = "README.md"
keywords = [
"database",
"powdb",
"powql",
"server",
"tcp",
]
categories = [
"database",
"database-implementations",
"network-programming",
]
license = "MIT"
repository = "https://github.com/zvndev/powdb"
[lib]
name = "powdb_server"
path = "src/lib.rs"
[[bin]]
name = "powdb-server"
path = "src/main.rs"
[[test]]
name = "concurrent_read"
path = "tests/concurrent_read.rs"
[[test]]
name = "connection_management"
path = "tests/connection_management.rs"
[[test]]
name = "graceful_shutdown_sigterm"
path = "tests/graceful_shutdown_sigterm.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "metrics_endpoint"
path = "tests/metrics_endpoint.rs"
[[test]]
name = "native_queries"
path = "tests/native_queries.rs"
[[test]]
name = "pipelined_batching"
path = "tests/pipelined_batching.rs"
[[test]]
name = "query_cancellation"
path = "tests/query_cancellation.rs"
[[test]]
name = "read_only_serving"
path = "tests/read_only_serving.rs"
[[test]]
name = "sync_protocol"
path = "tests/sync_protocol.rs"
[[test]]
name = "tls_connection"
path = "tests/tls_connection.rs"
[[test]]
name = "tx_gate_and_db_name"
path = "tests/tx_gate_and_db_name.rs"
[[test]]
name = "unix_socket"
path = "tests/unix_socket.rs"
[dependencies.bytes]
version = "1"
[dependencies.powdb-auth]
version = "0.14.0"
[dependencies.powdb-query]
version = "0.14.0"
[dependencies.powdb-storage]
version = "0.14.0"
[dependencies.powdb-sync]
version = "0.14.0"
[dependencies.rustls-pemfile]
version = "2"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"io-util",
"macros",
"sync",
"time",
"signal",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"time",
]
[dependencies.zeroize]
version = "1"
[dev-dependencies.rcgen]
version = "0.14"
features = [
"aws_lc_rs",
"pem",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "deny"
priority = -1