-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 913 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
[workspace]
members = ["client", "bvspcinv-backend", "utils"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
publish = false
repository = "https://github.com/KP64/bevy_space_invaders"
readme = "README.md"
keywords = ["game", "space", "invaders", "bevy", "rankings"]
categories = ["games"]
description = "A Space Invaders Clone made using Bevy."
[workspace.dependencies]
utils = { path = "utils" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = "0.7"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
pedantic = "warn"
nursery = "warn"
cargo = "warn"
needless_pass_by_value = { level = "allow", priority = 1 }
type_complexity = { level = "allow", priority = 1 }
multiple_crate_versions = { level = "allow", priority = 1 }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = true
codegen-units = 1