-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 1.02 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2021"
authors = ["Danil Karpenko <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/coppebars/spuz.git"
readme = "readme.md"
[workspace.dependencies]
tracing = { version = "0" }
thiserror = { version = "1" }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = { version = "1" }
spuz_piston = { path = "crates/spuz_piston" }
spuz_spawner = { path = "crates/spuz_spawner" }
spuz_wrench = { path = "crates/spuz_wrench" }
[workspace.lints.rust]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
all = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
module_name_repetitions = "allow"
too_many_lines = "allow"
must_use_candidate = "allow"
missing_const_for_fn = "allow"
cargo_common_metadata = "allow"
multiple_crate_versions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"