-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
62 lines (53 loc) · 1.35 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
[workspace]
resolver = "2"
members = [
"blueprint",
"factorio_api",
"locale",
"mod_util",
"prototypes",
"serde_helper",
"scanner",
"types",
]
[workspace.package]
authors = ["fgardt <me@fgardt.dev>"]
edition = "2021"
[profile.release]
strip = true
lto = "thin"
[workspace.dependencies]
blueprint = { path = "blueprint" }
clap = { version = "4.5", features = ["derive"] }
factorio_api = { path = "factorio_api" }
flate2 = "1.0"
image = { version = "0.25", features = ["png"], default-features = false }
imageproc = "0.25"
konst = "0.3"
locale = { path = "locale" }
mod_util = { path = "mod_util" }
paste = "1.0"
prototypes = { path = "prototypes" }
serde = { version = "1.0", features = ["derive"] }
serde_helper = { path = "serde_helper" }
serde_json = "1.0"
serde_repr = "0.1"
serde_with = "3.7"
thiserror = "1.0"
tracing = { version = "0.1", features = ["attributes", "log"] }
tokio = "1.36"
types = { path = "types" }
[workspace.lints.rust]
unsafe_code = "warn"
[workspace.lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
missing_panics_doc = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collection_is_never_read = "allow"