-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 1.39 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
[workspace]
default-members = ["frontend_egui"]
resolver = '2'
members = ["core", "floppy", "frontend_egui", "testrunner"]
[workspace.lints.clippy]
nursery = { level = "deny", priority = -1 }
cast_possible_truncation = "allow"
cognitive_complexity = "allow"
# I find this less readable
comparison_chain = "allow"
doc_markdown = "allow"
option_if_let_else = "allow"
missing_const_for_fn = "allow"
new_without_default = "allow"
iter_nth_zero = "allow"
unit_arg = "allow"
single_match = "allow"
explicit_iter_loop = "deny"
large_enum_variant = "deny"
large_types_passed_by_value = "deny"
large_stack_frames = "deny"
needless_pass_by_value = "deny"
semicolon_if_nothing_returned = "deny"
[profile.test]
opt-level = 3
debug = true
[patch.crates-io]
ecolor = { git = "https://github.com/twvd/snow-egui.git", rev = "628a7a4b455f355fafb1d47c9e6870effab96eb5"}
emath = { git = "https://github.com/twvd/snow-egui.git", rev = "628a7a4b455f355fafb1d47c9e6870effab96eb5"}
epaint = { git = "https://github.com/twvd/snow-egui.git", rev = "628a7a4b455f355fafb1d47c9e6870effab96eb5"}
egui = { git = "https://github.com/twvd/snow-egui.git", rev = "628a7a4b455f355fafb1d47c9e6870effab96eb5"}
egui-winit = { git = "https://github.com/twvd/snow-egui.git", rev = "628a7a4b455f355fafb1d47c9e6870effab96eb5"}
egui-file-dialog = { git = "https://github.com/twvd/snow-egui-file-dialog.git", rev = "7504d855c587129b36092cea818fafd2153a311b" }