0.1.0-0-pre.5-fix.3

This commit is contained in:
2026-09-16 01:37:52 +02:00
parent a503975d36
commit 380a24681d
7 changed files with 173 additions and 43 deletions

View File

@@ -1,5 +1,5 @@
# file: crates/common/game-logging-lib/Cargo.toml
# version: 1
# version: 2
[package]
name = "game-logging-lib"
@@ -13,7 +13,7 @@ publish.workspace = true
[dependencies]
tracing.workspace = true
tracing-appender.workspace = true
tracing-subscriber.workspace = true
tracing-subscriber = { workspace = true, features = ["fmt"] }
[lints]
workspace = true

View File

@@ -1,5 +1,5 @@
# file: crates/engines/engine-v1-sdl/Cargo.toml
# version: 3
# version: 4
[package]
name = "engine-v1-sdl"
@@ -12,7 +12,7 @@ publish.workspace = true
[dependencies]
engine-v1-common = { path = "../engine-v1-common" }
sdl3.workspace = true
sdl3 = { workspace = true, features = ["use-pkg-config"] }
tracing.workspace = true
[lints]

View File

@@ -1,5 +1,5 @@
// file: crates/engines/engine-v1-sdl/src/runtime.rs
// version: 2
// version: 3
/// Minimal SDL3 runtime used by Desktop POC runners.
pub struct SdlRuntime {
@@ -62,7 +62,3 @@ impl SdlRuntime {
return std::result::Result::Ok(());
}
}
#[cfg(test)]
#[path = "../unit_tests/runtime.rs"]
mod tests;