-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
44 lines (41 loc) · 1.38 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
# https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html#creating-the-second-package-in-the-workspace
[workspace]
members = [
"analytics_schema",
"ansi_color",
"cmdr",
"core",
"terminal_async",
"test_fixtures",
"tui",
"tuify",
"log",
"script",
] # Make sure to keep these in sync with `run` nushell script `workspace_folders`.
# https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions
resolver = "3"
# https://github.com/trailofbits/cargo-unmaintained
[workspace.metadata.unmaintained]
ignore = ["gethostname", "objs", "home", "proc-macro-error", "wayland-commons"]
# https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html
# https://www.linkedin.com/posts/marcoieni_i-finally-found-some-time-to-review-all-the-activity-7307355034642452481-EVLZ
[workspace.lints.rust]
ambiguous_negative_literals = "warn"
closure_returning_async_block = "warn"
explicit_outlives_requirements = "warn"
if_let_rescope = "warn"
impl_trait_overcaptures = "warn"
impl_trait_redundant_captures = "warn"
let_underscore_drop = "warn"
macro_use_extern_crate = "warn"
missing_debug_implementations = "warn"
non_ascii_indents = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unit_bindings = "warn"
unsafe_attr_outside_unsafe = "warn"
unused = "warn"
unused_import_braces = "warn"