-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.51 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
[package]
name = "anders"
version = "0.1.0"
edition = "2024"
resolver = "3"
[dependencies]
riscv = { version = "0.15" }
volatile-register = { version = "0.2" }
[lints.rust]
missing_docs = "allow"
elided_lifetimes_in_paths = "deny"
future-incompatible = "warn"
missing-unsafe-on-extern = "warn"
unused-lifetimes = "warn"
unused-qualifications = "warn"
unused-import-braces = "warn"
variant-size-differences = "warn"
trivial-numeric-casts = "warn"
unit-bindings = "warn"
unused-features = "warn"
[lints.rustdoc]
all = { level = "deny", priority = -1 }
private_doc_tests = "allow"
private_intra_doc_links = "allow"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_docs_in_private_items = "allow"
integer_division = "warn"
module_name_repetitions = "allow"
verbose_bit_mask = "allow"
too_many_lines = "allow"
missing_errors_doc = "allow"
struct_field_names = "allow"
items_after_statements = "allow"
cast_possible_truncation = "allow"
assertions_on_constants = "allow"
new_without_default = "allow"
needless_doctest_main = "allow"
tabs_in_doc_comments = "allow"
redundant_closure_for_method_calls = "allow"
must_use_candidate = "allow"