-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 630 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 630 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/builtin",
"crates/ide",
"crates/nil",
"crates/nix-interop",
"crates/ssr",
"crates/syntax",
]
[workspace.package]
version = "0.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# Should be sync with CI and README.
rust-version = "1.77"
[profile.dev]
debug = 1
[profile.bench]
debug = 1
[workspace.lints.clippy]
dbg-macro = "warn"
todo = "warn"
doc-markdown = "warn"
manual-let-else = "warn"
semicolon-if-nothing-returned = "warn"
uninlined-format-args = "warn"
# WAIT: https://github.com/rust-lang/rust-clippy/issues/11436
missing-panics-doc = "allow"