-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
68 lines (60 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
lints.workspace = true
[package]
edition.workspace = true
license.workspace = true
name = "drb-barcode-check"
rust-version.workspace = true
version.workspace = true
[dependencies]
eframe = "0.25"
egui_extras = "0.25"
miette = { version = "5.10", features = ["fancy"] }
send-helper = { git = "https://github.com/obellish/mpi-rusty-toolbox.git", rev = "fc0308a7f637db16982de4860252529a4ea7fed1" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "std", "tracing-log"] }
[workspace]
resolver = "2"
[workspace.lints.rust]
elided_lifetimes_in_paths = "warn"
[workspace.lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
disallowed_methods = "deny"
float_cmp = "allow"
fn_params_excessive_bools = "allow"
impl_trait_in_params = "warn"
module_name_repetitions = "allow"
needless_pass_by_value = "allow"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
redundant_pub_crate = "allow"
redundant_type_annotations = "warn"
significant_drop_tightening = "allow"
similar_names = "allow"
str_to_string = "deny"
struct_excessive_bools = "allow"
todo = "deny"
try_err = "warn"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unnecessary_wraps = "allow"
unsafe_derive_deserialize = "allow"
used_underscore_binding = "allow"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.package]
edition = "2021"
license = "MIT or Apache-2.0"
rust-version = "1.72"
version = "0.1.0"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "symbols"