-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
54 lines (51 loc) · 923 Bytes
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[workspace]
resolver = "2"
members = [
"agg-ast/ast",
"agg-ast/schema_derivation",
"benchmark/pipeline_generator",
"benchmark/profiler",
"mongosql-cli",
"e2e-tests",
"evergreen/create-tasks",
"mongosql-datastructures",
"mongosql-c",
"mongosql",
"service",
"test-utils",
"usererrordisplay-impl",
"visitgen",
"visitgen-test",
"mongosqltranslate",
]
[workspace.dependencies]
mongodb = "3"
thiserror = "2"
serde_yaml = "0"
serde = "1"
serde_json = "1"
chrono = "0"
regex = "1"
lazy_static = "1"
quote = "1"
syn = "2"
itertools = "0"
rand = "0"
tokio = "1"
serde_stacker = "0"
clap = { version = "4", features = ["derive"] }
dialoguer = "0"
anyhow = "1"
indicatif = "0"
tracing = "0"
tracing-subscriber = "0"
glob = "0"
futures = "0"
linked-hash-map = "0"
base64 = "0.22.1"
bson = "2"
tailcall = "1"
[profile.release]
lto = "fat"
codegen-units = 1
debug = true