-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 958 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "postgresql-trino-gateway"
version = "0.1.0"
edition = "2024"
rust-version = "1.93"
authors = ["Stackable GmbH"]
description = "A PostgreSQL wire protocol gateway for Trino, enabling Power BI DirectQuery"
license = "OSL-3.0"
repository = "https://github.com/stackabletech/postgresql-trino-gateway"
keywords = ["postgresql", "trino", "gateway", "powerbi"]
[dependencies]
pgwire = "0.39"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1"
serde_json = "1"
trino-rust-client = "0.9"
async-stream = "0.3"
sqlparser = { version = "0.61", features = ["visitor"] }
rustls-pemfile = "2"
rustls-pki-types = "1"
rand = "0.10"
[build-dependencies]
chrono = "0.4"
[dev-dependencies]
tokio-postgres = "0.7"
tempfile = "3"
rcgen = "0.14"
[lints.clippy]
unwrap_in_result = "deny"
unwrap_used = "deny"
panic = "deny"