diff options
| author | Nemo157 <git@nemo157.com> | 2024-05-25 14:03:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-25 13:03:55 +0100 |
| commit | 2e88321aecfd1c4a7fa69a1794ecdf34a401c358 (patch) | |
| tree | 8301dc4832325a4700409aaa8a86cefb5d824437 /crates/atuin-daemon/Cargo.toml | |
| parent | perf: only open the database for commands if strictly required (#2043) (diff) | |
| download | atuin-2e88321aecfd1c4a7fa69a1794ecdf34a401c358.zip | |
feat: support systemd socket activation for daemon (#2039)
This avoids issues with clients attempting to connect to the daemon
while it's starting, systemd creates the socket early and will queue
connections up until the daemon is ready to accept them.
Diffstat (limited to 'crates/atuin-daemon/Cargo.toml')
| -rw-r--r-- | crates/atuin-daemon/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 390cb28f..e4c4779b 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -32,5 +32,8 @@ prost-types = "0.12" tokio-stream = {version="0.1.14", features=["net"]} rand.workspace = true +[target.'cfg(target_os = "linux")'.dependencies] +listenfd = "1.0.1" + [build-dependencies] tonic-build = "0.11" |
