-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 765 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
41
42
43
[workspace]
members = [
"crates/storage",
"crates/sql",
"crates/query",
"crates/catalog",
"crates/types",
"crates/rdbms",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.94"
authors = [""]
[workspace.dependencies]
# 共通依存関係
anyhow = "1.0"
thiserror = "1.0"
tokio = { version = "1.40", features = ["full"] }
crossbeam = "0.8"
parking_lot = "0.12"
# SQLパーサー
sqlparser = "0.50"
# 内部クレート
storage = { path = "crates/storage" }
sql = { path = "crates/sql" }
query = { path = "crates/query" }
catalog = { path = "crates/catalog" }
types = { path = "crates/types" }
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1