28 lines
658 B
TOML
28 lines
658 B
TOML
[package]
|
|
name = "servius_neocity"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
thiserror = "2.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
bevy = { version = "0.18", features = ["bevy_pbr"] }
|
|
bevy_debug_grid = "0.9"
|
|
bevy_panorbit_camera = "0.34"
|
|
pdfium-render = "0.8.37"
|
|
iyes_perf_ui = { git = "https://github.com/blip-radar/iyes_perf_ui", branch = "bevy-0-18", version = "0.5.0" }
|
|
|
|
[features]
|
|
wayland = ["bevy/dynamic_linking", "bevy/wayland"]
|
|
wasm = []
|
|
|
|
[profile.release]
|
|
opt-level = 'z'
|
|
lto = "thin"
|
|
# lto = true
|
|
# codegen-units = 1
|