-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (75 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
81 lines (75 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
members = ["crates/*", "packages/@oveo/optimizer"]
resolver = "3"
[workspace.dependencies]
thiserror = "2"
rustc-hash = "2"
compact_str = "0.9.0"
regex = { version = "1.11", default-features = false, features = [
"std",
"perf",
] }
sha1 = "0.10"
dashmap = "7.0.0-rc2"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
oxc_allocator = "0.121"
oxc_ast = "0.121"
oxc_codegen = "0.121"
oxc_data_structures = "0.121"
oxc_diagnostics = "0.121"
oxc_ecmascript = "0.121"
oxc_parser = "0.121"
oxc_semantic = "0.121"
oxc_span = "0.121"
oxc_syntax = "0.121"
oxc_traverse = "0.121"
napi = "3"
napi-derive = "3"
napi-build = "2"
oveo = { path = "./crates/oveo" }
[workspace.lints.clippy]
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
print_stdout = "warn"
print_stderr = "warn"
allow_attributes = "warn"
clone_on_ref_ptr = "warn"
self_named_module_files = "warn"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
get_unwrap = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
unnecessary_safety_comment = "warn"
undocumented_unsafe_blocks = "warn"
infinite_loop = "warn"
map_with_unused_argument_over_ranges = "warn"
unused_result_ok = "warn"
pathbuf_init_then_push = "warn"
collapsible_if = "allow"
collapsible_else_if = "allow"
collapsible_match = "allow"
[profile.release]
opt-level = 3
codegen-units = 1
lto = "fat"
panic = "abort"
strip = true
split-debuginfo = "packed"
[profile.dev]
debug = false
[profile.release-with-debug]
inherits = "release"
strip = false
debug = true
[profile.coverage]
inherits = "release"
opt-level = 2
codegen-units = 256
lto = "thin"
debug-assertions = true
overflow-checks = true