-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "chapterhouseqe"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 3 # Optimize for binary size; use "3" for speed
lto = "fat" # Enable Link-Time Optimization
codegen-units = 1 # Reduce parallel code generation for better optimization
debug = false # Disable debug information
[[bin]]
name = "main"
path = "src/bin/main.rs"
[[bin]]
name = "scratch_main"
path = "src/bin/scratch_main.rs"
[dependencies]
anyhow = { version = "1.0.91", features = ["backtrace"] }
bytes = "1.9"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlparser = { version = "0.52.0", features = ["serde"] }
thiserror = "1.0.65"
tokio = { version = "1.42.0", features = ["full", "net"] }
tokio-util = { version = "0.7.13", features = ["rt"] }
tracing = "0.1"
tracing-subscriber = "0.3"
unicode-segmentation = "1.12.0"
uuid = { version = "1.11", features = ["v4"] }
opendal = { version = "0.51", features = ["services-fs", "services-s3"] }
futures = { version = "0.3" }
tempdir = { version = "0.3" }