forked from major7apps/pensyve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 720 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 720 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
[workspace]
resolver = "2"
members = [
"pensyve-core",
"pensyve-python",
"pensyve-mcp",
"pensyve-mcp-tools",
"pensyve-mcp-gateway",
"pensyve-cli",
"pensyve-benchmarks",
]
exclude = ["loadtest"]
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# Allow some pedantic lints that are too noisy
module_name_repetitions = { level = "allow" }
must_use_candidate = { level = "allow" }
missing_errors_doc = { level = "allow" }
missing_panics_doc = { level = "allow" }
cast_possible_truncation = { level = "allow" }
cast_precision_loss = { level = "allow" }
cast_sign_loss = { level = "allow" }
[workspace.lints.rust]
unsafe_code = "warn"