20 lines
No EOL
512 B
TOML
20 lines
No EOL
512 B
TOML
[package]
|
|
name = "pix_space"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Hartmut Seichter <hartmut@technotecture.com>"]
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# bevy = "0.9.0"
|
|
bevy = { version = "0.9.1", features = ["dynamic"] }
|
|
rand = "0.8.4"
|
|
# vrpn = "0.1.0" # not compatible with 2021
|
|
vrpn = { git = "https://github.com/seichter/vrpn-rs" }
|
|
bytes = "0.4.12"
|
|
crossbeam = "0.8.2"
|
|
|
|
[profile.release]
|
|
opt-level = 3 |