Split crate into shared logic library and binary crate (#52)

This commit is contained in:
PROMETHIA-27
2025-06-28 16:53:40 -04:00
committed by GitHub
parent 5d00cede94
commit b93c0e4d96
64 changed files with 514 additions and 104 deletions

View File

@@ -1,16 +1,9 @@
[package]
name = "hedz_reloaded"
version = "0.1.0"
edition = "2024"
build = "build.rs"
[profile.dev.package."*"]
opt-level = 3
[workspace]
resolver = "3"
members = ["crates/*"]
[features]
dbg = ["avian3d/debug-plugin", "dep:bevy-inspector-egui"]
[dependencies]
[workspace.dependencies]
avian3d = { version = "0.3", default-features = false, features = [
"3d",
"f32",
@@ -21,28 +14,24 @@ avian3d = { version = "0.3", default-features = false, features = [
"parallel",
] }
bevy = { version = "0.16.0", features = ["track_location"] }
bevy_trenchbroom = { version = "0.8.1", features = ["avian"] }
nil = "0.14.0"
bevy_asset_loader = "0.23.0-rc.3"
bevy_sprite3d = "5.0.0"
rand = "=0.8.5"
bevy-inspector-egui = { version = "0.31", optional = true }
bevy-inspector-egui = { version = "0.31" }
bevy-steamworks = "0.13.0"
steamworks = "0.11"
bevy_ballistic = "0.4.0"
bevy-ui-gradients = "0.4.0"
bevy_debug_log = "0.6.0"
bevy_asset_loader = "0.23.0-rc.3"
bevy_ballistic = "0.4.0"
bevy_common_assets = { version = "0.13.0", features = ["ron"] }
serde = { version = "1.0.219", features = ["derive"] }
ron = "0.8"
bevy_debug_log = "0.6.0"
bevy_sprite3d = "5.0.0"
bevy_trenchbroom = { version = "0.8.1", features = ["avian"] }
happy_feet = { git = "https://github.com/rustunit/happy_feet.git", rev = "ecfecc6243862bc2bc64dcadfd0efd21c766ab5b" }
[build-dependencies]
vergen-gitcl = "1.0"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
nil = "0.14.0"
rand = "=0.8.5"
ron = "0.8"
serde = { version = "1.0.219", features = ["derive"] }
shared = { path = "crates/shared" }
steamworks = "0.11"
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
bevy-steamworks = { git = "https://github.com/HouraiTeahouse/bevy_steamworks.git", rev = "1933e5d" }