-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 979 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 = "boltsql"
version = "0.1.0"
edition = "2021"
description = "bolt-sql: Natural language to SQL with schema-aware retrieval and CLI"
license = "MIT"
authors = ["Your Name <you@example.com>"]
[lib]
name = "boltsql"
path = "src/lib.rs"
[[bin]]
name = "bolt-sql"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread","macros","fs","time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
miette = { version = "5", features = ["fancy"] }
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio-rustls","macros","postgres","sqlite","mysql"] }
anyhow = "1"
thiserror = "1"
rayon = "1"
reqwest = { version = "0.12", features = ["json","rustls-tls"] }
time = "0.3"
blake3 = "1"
parking_lot = "0.12"
url = "2"
dotenvy = "0.15"
once_cell = "1"
memmap2 = "0.9"
futures = "0.3"
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = "z"