-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 990 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
38
39
40
41
42
43
44
[workspace]
resolver = "2"
members = [
"smushclient",
"smushclient-plugins",
"smushclient-qt/rust",
"smushclient-swift",
]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
inline_always = "allow"
manual_assert = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
[workspace.dependencies.chrono]
version = "0.4.38"
features = ["serde"]
[workspace.dependencies.flagset]
version = "0.4.6"
features = ["serde"]
[workspace.dependencies.mud-transformer]
git = "https://github.com/jnbooth/mxp"
rev = "e3cb450045e5d372e6fa1bc0871bc6256bf80692"
features = ["serde"]
[workspace.dependencies.mxp]
git = "https://github.com/jnbooth/mxp"
rev = "e3cb450045e5d372e6fa1bc0871bc6256bf80692"
features = ["serde"]
[workspace.dependencies.serde]
version = "1.0.204"
features = ["derive"]
[workspace.dependencies.tokio]
version = "1.38.0"