diff options
Diffstat (limited to 'server/registry')
| -rw-r--r-- | server/registry/Cargo.toml | 2 | ||||
| -rw-r--r-- | server/registry/src/conn_test.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/registry/Cargo.toml b/server/registry/Cargo.toml index 8c5ad971..77ab7476 100644 --- a/server/registry/Cargo.toml +++ b/server/registry/Cargo.toml @@ -18,4 +18,4 @@ tokio-tungstenite = { version = "0.27.0", features = [ rustls = { version = "0.23.31", features = ["ring"] } hurrycurry-protocol = { path = "../protocol" } -hurrycurry-client-lib = { path = "../client-lib" } +hurrycurry-game-core = { path = "../game-core" } diff --git a/server/registry/src/conn_test.rs b/server/registry/src/conn_test.rs index e4f4fa63..bc371a10 100644 --- a/server/registry/src/conn_test.rs +++ b/server/registry/src/conn_test.rs @@ -16,7 +16,7 @@ */ use anyhow::{Context, Result, bail}; -use hurrycurry_client_lib::network::tokio::Network; +use hurrycurry_game_core::network::tokio::Network; use hurrycurry_protocol::PacketC; use log::info; use std::{ |