-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 842 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
[workspace]
resolver = "2"
members = [
"crates/*",
"examples/pinia/src-tauri",
"examples/pinia-nuxt/src-tauri",
"examples/shared/rust",
"examples/svelte/src-tauri",
"examples/valtio/src-tauri",
]
[workspace.package]
version = "1.0.0"
edition = "2021"
rust-version = "1.77.2"
[workspace.lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(tauri_store_tracing)']
[workspace.lints.clippy]
clone_on_ref_ptr = "deny"
filetype_is_file = "deny"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
rc_buffer = "deny"
rc_mutex = "deny"
rest_pat_in_fully_bound_structs = "deny"
single_match_else = "allow"
[workspace.lints.clippy.pedantic]
level = "deny"
priority = -1