diff --git a/core/chanora_core/Cargo.toml b/core/chanora_core/Cargo.toml index 5827cd0..5722f35 100644 --- a/core/chanora_core/Cargo.toml +++ b/core/chanora_core/Cargo.toml @@ -15,7 +15,7 @@ chanora_state = { path = "../../crates/chanora_state" } chanora_audio = { path = "../../crates/chanora_audio" } chanora_storage = { path = "../../crates/chanora_storage" } chanora_diagnostics = { path = "../../crates/chanora_diagnostics" } -chanora_server_prefetch = { path = "../../crates/chanora_server_prefetch" } +chanora_prefetch = { path = "../../crates/chanora_prefetch" } thiserror.workspace = true tracing.workspace = true tokio = { version = "1", features = ["sync", "rt", "macros"] } @@ -23,6 +23,6 @@ tokio = { version = "1", features = ["sync", "rt", "macros"] } [dev-dependencies] # Used by integration tests to inspect the bookmark DB row layout # without going through the public repository API. -chanora_server_prefetch = { path = "../../crates/chanora_server_prefetch", features = ["test-support"] } +chanora_prefetch = { path = "../../crates/chanora_prefetch", features = ["test-support"] } rusqlite = { version = "0.32", features = ["bundled"] } tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] } diff --git a/core/chanora_core/src/lib.rs b/core/chanora_core/src/lib.rs index 670517d..884d4e7 100644 --- a/core/chanora_core/src/lib.rs +++ b/core/chanora_core/src/lib.rs @@ -46,7 +46,7 @@ use tokio::sync::{broadcast, oneshot, watch, Mutex}; use tokio::task::JoinHandle; use tracing::{info, warn}; -use chanora_server_prefetch::ServerPrefetcher; +use chanora_prefetch::ServerPrefetcher; use chanora_state::channel_join::{ self, AuthoritativeSource, ChannelId as JoinChannelId, ChannelJoinEvent, ChannelJoinState, ConnectionEpoch, JoinFailureKind, @@ -2506,9 +2506,7 @@ mod tests { .fail_next_prefetch_setup_for_test("resolver unavailable") .await; - let result = session - .prefetch_server(" Example.COM ".to_string()) - .await; + let result = session.prefetch_server(" Example.COM ".to_string()).await; assert!(result.is_ok()); }