diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2026-02-13 11:37:58 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-13 11:37:58 -0800 |
| commit | d52c4d6003adced1f6763261a7f9132719be5533 (patch) | |
| tree | 94d2f7c815814135edbc2ee0af56d2cedd1a1724 /Cargo.lock | |
| parent | feat: add Atuin AI inline CLI MVP (#3178) (diff) | |
| download | atuin-d52c4d6003adced1f6763261a7f9132719be5533.zip | |
feat: add autostart and pid management to daemon (#3180)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -230,8 +230,10 @@ dependencies = [ "clap_complete_nushell", "colored", "crossterm", + "daemonize", "eyre", "fs-err", + "fs4", "futures-util", "fuzzy-matcher", "indicatif", @@ -361,6 +363,7 @@ name = "atuin-daemon" version = "18.12.1" dependencies = [ "atuin-client", + "atuin-common", "atuin-dotfiles", "atuin-history", "dashmap", @@ -371,6 +374,7 @@ dependencies = [ "prost-types", "protox", "rand 0.8.5", + "tempfile", "time", "tokio", "tokio-stream", @@ -1115,6 +1119,15 @@ dependencies = [ ] [[package]] +name = "daemonize" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e" +dependencies = [ + "libc", +] + +[[package]] name = "darling" version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1618,6 +1631,16 @@ dependencies = [ ] [[package]] +name = "fs4" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4" +dependencies = [ + "rustix 1.1.3", + "windows-sys 0.59.0", +] + +[[package]] name = "futures" version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" |
