diff --git a/bindings/src/api.rs b/bindings/src/api.rs index 5386e0eb43681da86766bd9aa9cb6d69c8707e12..1685bd5c7e3255fbee8786c038eca18b088a7e12 100644 --- a/bindings/src/api.rs +++ b/bindings/src/api.rs @@ -1,8 +1,8 @@ use std::hash::{Hash, Hasher}; use proximipy::caching::approximate_cache::ApproximateCache; -use proximipy::caching::bounded::fifo::fifo_cache::FifoCache as FifoInternal; -use proximipy::caching::bounded::lru::lru_cache::LRUCache as LruInternal; +use proximipy::caching::fifo::fifo_cache::FifoCache as FifoInternal; +use proximipy::caching::lru::lru_cache::LRUCache as LruInternal; use proximipy::numerics::comp::ApproxComparable; use proximipy::numerics::f32vector::F32Vector; diff --git a/core/src/main.rs b/core/src/main.rs index 03776d879ab1026b7c1e8ec30db7cc7f46e5afbd..e8d05071d39aff77781d652eaa9b0df87c7e1461 100644 --- a/core/src/main.rs +++ b/core/src/main.rs @@ -4,7 +4,7 @@ use std::path::Path; use caching::approximate_cache::ApproximateCache; -use caching::bounded::lru::lru_cache::LRUCache; +use caching::lru::lru_cache::LRUCache; use fs::file_manager; use numerics::f32vector::F32Vector; use std::fs::File;