diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-10-19 20:21:27 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-10-19 20:21:27 +0200 |
| commit | 231a5ce21fcee9195fcc504ee672e4464d627c47 (patch) | |
| tree | 5d26373c2dbdaa3a4c7dfb6d2dc4e0fb63ca47a1 /server/editor | |
| parent | 239f139e7cdc2ee9f2658a8038d2870293e20aa4 (diff) | |
| download | hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.bz2 hurrycurry-231a5ce21fcee9195fcc504ee672e4464d627c47.tar.zst | |
Rename client-lib crate to game-core
Diffstat (limited to 'server/editor')
| -rw-r--r-- | server/editor/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/editor/src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/editor/Cargo.toml b/server/editor/Cargo.toml index a4fb8bc2..80b939fe 100644 --- a/server/editor/Cargo.toml +++ b/server/editor/Cargo.toml @@ -20,4 +20,4 @@ shlex = "1.3.0" serde_yml = "0.0.12" hurrycurry-protocol = { path = "../protocol" } -hurrycurry-client-lib = { path = "../client-lib", features = ["sync-network"] } +hurrycurry-game-core = { path = "../game-core", features = ["sync-network"] } diff --git a/server/editor/src/main.rs b/server/editor/src/main.rs index be0fcbc5..86cb4b40 100644 --- a/server/editor/src/main.rs +++ b/server/editor/src/main.rs @@ -3,7 +3,7 @@ pub mod save; use anyhow::{Result, anyhow}; use clap::Parser; use futures_util::{SinkExt, StreamExt}; -use hurrycurry_client_lib::network::sync::Network; +use hurrycurry_game_core::network::sync::Network; use hurrycurry_protocol::{ Character, Gamedata, Hand, Message, PacketC, PacketS, PlayerClass, PlayerID, TileIndex, VERSION, |