[package] name = "trap_rust" version = "0.1.0" edition = "2024" [dependencies] bevy = "0.15.3" bevy_nannou = { git = "https://github.com/nannou-org/nannou", branch = "bevy-refactor", version = "0.1.0", features = ["wayland"] } iyes_perf_ui = "0.4.0" nannou_laser = { git = "https://github.com/rubenvandeven/nannou", branch = "helios_laser_DAC" } serde = "1.0.219" serde_json = "1.0.140" zmq = "0.10.0" nannou = "0.19.0" nannou_egui = { version = "0.19.0", features = ["wayland"] } serde_repr = "0.1.20" # homography and its dependents: homography = { git = "https://github.com/azazdeaz/homography" } nalgebra = "0.30.0" cv-core = "0.15.0" [dev-dependencies] # Enable max optimizations for dependencies, but not for our code: # (tip from bevy examples for fast compilation/performance trade-off) [profile.dev.package."*"] opt-level = 3 [[bin]] name="renderer" path="src/main.rs"