fix: atuin-daemon optional dependency (#2306)

This commit is contained in:
Jakub Panek 2024-07-29 12:55:56 +02:00 committed by GitHub
parent 0b01d93083
commit 8cb5983a53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,7 @@ atuin = { path = "/usr/bin/atuin" }
default = ["client", "sync", "server", "clipboard", "check-update", "daemon"]
client = ["atuin-client"]
sync = ["atuin-client/sync"]
daemon = ["atuin-client/daemon"]
daemon = ["atuin-client/daemon", "atuin-daemon"]
server = ["atuin-server", "atuin-server-postgres"]
clipboard = ["arboard"]
check-update = ["atuin-client/check-update"]
@ -48,7 +48,7 @@ atuin-client = { path = "../atuin-client", version = "18.4.0-beta.3", optional =
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.3" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0-beta.3" }
atuin-history = { path = "../atuin-history", version = "18.4.0-beta.3" }
atuin-daemon = { path = "../atuin-daemon", version = "18.4.0-beta.3" }
atuin-daemon = { path = "../atuin-daemon", version = "18.4.0-beta.3", optional = true, default-features = false }
log = { workspace = true }
env_logger = "0.11.2"

View File

@ -323,6 +323,7 @@ impl Cmd {
Ok(())
}
#[cfg(feature = "daemon")]
async fn handle_daemon_start(settings: &Settings, command: &[String]) -> Result<()> {
let command = command.join(" ");
@ -425,6 +426,7 @@ impl Cmd {
Ok(())
}
#[cfg(feature = "daemon")]
#[allow(unused_variables)]
async fn handle_daemon_end(
settings: &Settings,
@ -543,6 +545,7 @@ impl Cmd {
pub async fn run(self, settings: &Settings) -> Result<()> {
let context = current_context();
#[cfg(feature = "daemon")]
// Skip initializing any databases for start/end, if the daemon is enabled
if settings.daemon.enabled {
match self {