-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (41 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
49 lines (41 loc) · 1.02 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
45
46
47
48
49
[workspace]
resolver = "2"
members = ["packages/*"]
[workspace.package]
version = "2.0.0"
edition = "2021"
[profile.dev]
incremental = true
debug = true
# [profile.dev.package]# aws-lc-sys.opt-level = 3
# proc-macro2.opt-level = 3
# quote.opt-level = 3
# serde_derive.opt-level = 3
# sqlparser.opt-level = 3
# syn.opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.test]
incremental = true
debug = true
# Default release profile (https://doc.rust-lang.org/cargo/reference/profiles.html)
[profile.release]
codegen-units = 1
strip = "symbols"
[profile.profiling]
inherits = "release"
strip = "none"
debug = true
[workspace.dependencies]
sqlparser = { version = "^0.52", features = ["bigdecimal", "serde"] }
# sqltk = { git = "https://github.com/cipherstash/sqltk/", rev = "e16406f" }
sqltk = { path = "../sqltk/packages/sqltk" }
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"ansi",
"json",
"env-filter",
"std",
] }