You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
747 B
23 lines
747 B
[workspace] |
|
resolver = "3" |
|
members = [ "client", "common" ] |
|
|
|
# Enable a small amount of optimization in the dev profile. |
|
[profile.dev] |
|
opt-level = 1 |
|
|
|
# Enable a large amount of optimization in the dev profile for dependencies. |
|
[profile.dev.package."*"] |
|
opt-level = 3 |
|
|
|
[workspace.dependencies] |
|
bevy = { version = "0.17.2", features = [ "serialize" ] } |
|
# lightyear = { version = "0.25.3", features = [ "netcode", "webtransport" ] } |
|
serde = "1.0.228" |
|
thiserror = "2.0.17" |
|
|
|
# TODO: Once lightyear releases a version with `raw_connection` support, switch to that. |
|
[workspace.dependencies.lightyear] |
|
git = "https://github.com/cBournhonesque/lightyear.git" |
|
rev = "f8583d6630a72bdb8bebb4083a8f3f9cc20aecaa" |
|
features = [ "raw_connection", "webtransport" ]
|
|
|