chore: moved select_buffer under buffer::tools

needed to more appropriately subdivide feature flags
This commit is contained in:
əlemi 2024-02-01 17:54:56 +01:00
parent 1ee185b5ec
commit 4ae31df3ff
3 changed files with 5 additions and 5 deletions

View file

@ -9,6 +9,9 @@
/// buffer controller implementation
pub mod controller;
/// assorted helpers to handle buffer controllers
pub mod tools;
pub(crate) mod worker;
pub use controller::BufferController as Controller;

View file

@ -148,9 +148,6 @@ pub mod errors;
#[cfg(feature = "client")]
pub mod client;
/// assorted helpers
pub mod tools;
/// workspace operations
#[cfg(feature = "client")]
pub mod workspace;