-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 792 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 792 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
[package]
name = "querygate"
version = "0.1.0"
edition = "2021"
description = "Safe read-only SQL gateway for AI agents with allowlist validation"
license = "MIT"
[lib]
name = "querygate"
path = "src/lib.rs"
[[bin]]
name = "querygate"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dirs = "6"
form_urlencoded = "1.2.2"
native-tls = "0.2.18"
postgres-native-tls = "0.5.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
sqlparser = { version = "0.53", features = ["visitor"] }
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tokio-postgres = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[dev-dependencies]
tempfile = "3"