laserspace/Cargo.toml
Ruben van de Ven 0b9d4d12f7 Simpler default
2025-08-04 16:01:23 +02:00

41 lines
1.1 KiB
TOML

[package]
name = "laserspace"
version = "0.1.0"
edition = "2024"
authors = ["Ruben van de Ven <git@rubenvandeven.com>"]
default-run = "laserspace"
[dependencies]
bevy = "0.15.3"
# bevy_nannou = { git = "https://github.com/nannou-org/nannou", branch = "bevy-refactor", version = "0.1.0", features = ["wayland"] }
bevy_nannou = { git = "https://github.com/nannou-org/nannou", rev = "03135771b41944347a64ef385f299d89dbea45c1", 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"
geo = "0.30.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="laserspace"
path="src/main.rs"