/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "bubble_duty"
 3  version = "0.3.0"
 4  edition = "2024"
 5  
 6  [dependencies]
 7  macroquad = "0.4.14"
 8  miniquad = "0.4.8"
 9  
10  # [target.'cfg(unix)'.dependencies]
11  chrono = { version = "0.4.44", default-features = false, features = [] }
12  # chrono = { version = "0.4.44", default-features = true }
13  
14  # [target.'cfg(target_arch = "wasm32")'.dependencies]
15  # chrono = { version = "0.4.44", default-features = false, features = ["wasmbind", "clock"] }
16  # # js-sys = "0.3.91"
17  # wasm-bindgen = "0.2.114"
18  
19  # Enable a small amount of optimization in the dev profile.
20  [profile.dev]
21  opt-level = 1
22  
23  # Enable a large amount of optimization in the dev profile for dependencies.
24  [profile.dev.package."*"]
25  opt-level = 3