Client/Server Feature Split (#63)
This commit is contained in:
@@ -5,12 +5,15 @@ edition = "2024"
|
||||
build = "build.rs"
|
||||
|
||||
[features]
|
||||
default = ["lightyear/client"]
|
||||
default = ["shared/client"]
|
||||
dbg = ["avian3d/debug-plugin", "dep:bevy-inspector-egui", "shared/dbg"]
|
||||
|
||||
[dependencies]
|
||||
avian3d = { workspace = true }
|
||||
bevy = { workspace = true }
|
||||
bevy = { workspace = true, default-features = false, features = [
|
||||
"bevy_window",
|
||||
"bevy_winit",
|
||||
] }
|
||||
bevy-inspector-egui = { workspace = true, optional = true }
|
||||
bevy-steamworks = { workspace = true }
|
||||
bevy-ui-gradients = { workspace = true }
|
||||
@@ -19,7 +22,7 @@ bevy_ballistic = { workspace = true }
|
||||
bevy_common_assets = { workspace = true }
|
||||
bevy_debug_log = { workspace = true }
|
||||
bevy_sprite3d = { workspace = true }
|
||||
bevy_trenchbroom = { workspace = true }
|
||||
bevy_trenchbroom = { workspace = true, features = ["client"] }
|
||||
happy_feet = { workspace = true }
|
||||
lightyear = { workspace = true }
|
||||
nil = { workspace = true }
|
||||
|
||||
Reference in New Issue
Block a user