-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1.11 KB
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
41
42
43
44
[workspace]
resolver = "2"
members = ["crates/query-cache", "crates/query-cli", "crates/query-core", "crates/query-distributed", "crates/query-executor", "crates/query-flight", "crates/query-index", "crates/query-parser", "crates/query-pgwire", "crates/query-planner", "crates/query-storage", "crates/query-streaming", "examples-package"]
[workspace.package]
version = "0.2.0"
edition = "2024"
authors = ["Darshan vichhi"]
license = "Apache-2.0"
repository = "https://github.com/AarambhDevHub/query-engine"
[workspace.dependencies]
# Core dependencies
arrow = { version = "53.0", features = ["prettyprint"] }
parquet = { version = "53.0", features = ["async"] }
tokio = { version = "1.40", features = ["full"] }
async-trait = "0.1"
thiserror = "1.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Performance
rayon = "1.10"
dashmap = "6.1"
ahash = "0.8"
parking_lot = "0.12"
# Utilities
tracing = "0.1"
tracing-subscriber = "0.3"
bytes = "1.7"
futures = "0.3"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
[profile.bench]
inherits = "release"