-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 992 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
dapic_ast = { path = "crates/ast" }
dapic_expand = { path = "crates/expand" }
dapic_hir = { path = "crates/hir" }
dapic_lexer = { path = "crates/lexer" }
dapic_macros = { path = "crates/macros" }
dapic_parser = { path = "crates/parser" }
dapic_session = { path = "crates/session" }
ariadne = "0.5"
bumpalo = "3"
parking_lot = "0.12"
thin-vec = "0.2"
tracing = "0.1"
# Dev
insta = "1"
paste = "1"
[workspace.lints]
[workspace.lints.rust]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
dbg_macro = "warn"
# missing_docs_in_private_items = "warn"
todo = "warn"
unwrap_used = "warn"
redundant_pub_crate = "allow"
enum_glob_use = "allow"
module_name_repetitions = "allow"
[workspace.lints.rustdoc]
all = { level = "warn", priority = -1 }
[patch.crates-io]
ariadne = { git = "https://github.com/mrnossiom/ariadne", branch = "expose-report-fields" }