ALVR/Cargo.toml
zarik5 92a5bba968
Multimodal input (#2367)
* feat:  Multimodal input

* Fix controllers and hands dropping to 0,0,0 when not visible

* Actually fix multimodal input support

* Address review comments
2024-09-03 00:24:06 +02:00

32 lines
810 B
TOML

[workspace]
resolver = "2"
members = ["alvr/*"]
[workspace.package]
version = "21.0.0-dev01"
edition = "2021"
rust-version = "1.77"
authors = ["alvr-org"]
license = "MIT"
[workspace.dependencies]
alvr_audio = { path = "alvr/audio" }
alvr_client_core = { path = "alvr/client_core" }
alvr_common = { path = "alvr/common" }
alvr_events = { path = "alvr/events" }
alvr_filesystem = { path = "alvr/filesystem" }
alvr_gui_common = { path = "alvr/gui_common" }
alvr_packets = { path = "alvr/packets" }
alvr_server_core = { path = "alvr/server_core"}
alvr_server_io = { path = "alvr/server_io" }
alvr_session = { path = "alvr/session" }
alvr_sockets = { path = "alvr/sockets" }
[profile.release]
debug = "limited"
strip = false
[profile.distribution]
inherits = "release"
lto = true