-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.26 KB
/
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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.lints.rust]
unreachable_pub = "warn"
unused_qualifications = "warn"
[workspace.lints.clippy]
dbg_macro = "warn"
explicit_deref_methods = "warn"
explicit_into_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
implicit_clone = "warn"
inefficient_to_string = "warn"
large_stack_arrays = "warn"
large_types_passed_by_value = "warn"
linkedlist = "warn"
map_err_ignore = "warn"
map_flatten = "warn"
map_unwrap_or = "warn"
mem_forget = "warn"
needless_borrow = "warn"
needless_continue = "warn"
needless_for_each = "warn"
needless_pass_by_value = "warn"
single_match_else = "warn"
string_to_string = "warn"
unused_self = "warn"
[workspace.dependencies]
anyhow = "1.0"
camino = "1.1"
mitki-analysis = { path = "crates/mitki-analysis" }
mitki-db = { path = "crates/mitki-db" }
mitki-errors = { path = "crates/mitki-errors" }
mitki-ide = { path = "crates/mitki-ide" }
mitki-inputs = { path = "crates/mitki-inputs" }
mitki-parse = { path = "crates/mitki-parse" }
mitki-span = { path = "crates/mitki-span" }
mitki-tokenizer = { path = "crates/mitki-tokenizer" }
mitki-yellow = { path = "crates/mitki-yellow" }
salsa = { git = "https://github.com/salsa-rs/salsa/" }
text-size = "1.1"