From 5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 11 Jun 2026 00:54:30 +0200 Subject: chore: Move everything into one big crate That helps remove duplicated code and rustc/cargo will now also show dead code correctly. --- crates/atuin-client/src/lib.rs | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 crates/atuin-client/src/lib.rs (limited to 'crates/atuin-client/src/lib.rs') diff --git a/crates/atuin-client/src/lib.rs b/crates/atuin-client/src/lib.rs deleted file mode 100644 index cd7785e1..00000000 --- a/crates/atuin-client/src/lib.rs +++ /dev/null @@ -1,31 +0,0 @@ -#![deny(unsafe_code)] - -#[macro_use] -extern crate log; - -#[cfg(feature = "sync")] -pub mod api_client; -#[cfg(feature = "sync")] -pub mod auth; -#[cfg(feature = "sync")] -pub mod login; -#[cfg(feature = "sync")] -pub mod register; -#[cfg(feature = "sync")] -pub mod sync; - -pub mod database; -pub mod distro; -pub mod encryption; -pub mod history; -pub mod import; -pub mod logout; -pub mod meta; -pub mod ordering; -pub mod plugin; -pub mod record; -pub mod secrets; -pub mod settings; -pub mod theme; - -mod utils; -- cgit v1.3.1