-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (57 loc) · 1.69 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (57 loc) · 1.69 KB
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
[package]
name = "noiter"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "a noita clone"
repository = "https://github.com/bgkillas/noiter"
[profile.release_lto]
inherits = "release"
lto = true
strip = true
panic = "abort"
codegen-units = 1
opt-level = 3
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 1
[features]
default = ["fps", "debug"]
colliders = []
fps = ["bevy/bevy_dev_tools"]
debug = ["bevy/debug"]
tracy = ["bevy/trace_tracy"]
wasm = ["getrandom/wasm_js", "dep:wasm-bindgen", "dep:console_error_panic_hook"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "noiter_lib"
[dependencies]
bevy = {version = "0.19.0", default-features = false, features = ["2d", "ui", "bevy_settings"]}
avian2d = {version = "0.7.0", features = ["simd", "parallel"]}
uninit_map = {version = "0.1.0", git = "https://github.com/bgkillas/helix"}
rand = { version = "0.10.2", default-features = false, features = ["std", "alloc", "simd_support", "sys_rng"] }
getrandom = "0.4.3"
wasm-bindgen = {version="0.2.126", optional = true}
console_error_panic_hook = {version="0.1.7",optional = true}
arrayvec = "0.7.8"
[lints.clippy]
pedantic = {level = "warn", priority = -1}
shadow_reuse = "warn"
unused_trait_names = "warn"
missing_inline_in_public_items = "warn"
str-to-string = "warn"
missing_panics_doc = "allow"
missing_errors_doc = "allow"
too_many_lines = "allow"
missing_fields_in_debug = "allow"
missing_safety_doc = "allow"
similar-names = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
missing-inline-in-public-items = "allow"
needless_pass_by_value = "allow"
cast_precision_loss = "allow"
as_conversions = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"