diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-07-09 21:43:23 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-07-09 21:43:23 +0200 |
| commit | 3223d93cb3c77ab02aa0a35f2a8314e447cee9a4 (patch) | |
| tree | 3971a1f37f5fe3cadb747c5229a0d54e868e45e3 /Cargo.lock | |
| parent | fix(client/sync): Pass through precise error on `SyncError::WrongKey` (diff) | |
| download | atuin-3223d93cb3c77ab02aa0a35f2a8314e447cee9a4.zip | |
chore: Separate daemon, client, server, and lib into crates
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 238 |
1 files changed, 238 insertions, 0 deletions
@@ -4797,6 +4797,244 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] +name = "turtle" +version = "18.16.1" +dependencies = [ + "arboard", + "async-trait", + "axum", + "base64", + "clap", + "clap_complete", + "clap_complete_nushell", + "colored", + "config", + "crossterm", + "crypto_secretbox", + "daemonize", + "dashmap", + "directories", + "eyre", + "fs-err", + "fs4", + "fuzzy-matcher", + "hyper-util", + "indicatif", + "interim", + "itertools", + "lasso", + "listenfd", + "log", + "metrics", + "metrics-exporter-prometheus", + "minspan", + "norm", + "notify", + "portable-pty", + "prost", + "protox", + "rand 0.8.5", + "ratatui", + "regex", + "reqwest", + "rmp", + "runtime-format", + "rustix", + "rustls", + "rusty_paserk", + "rusty_paseto", + "semver", + "serde", + "serde_json", + "serde_regex", + "serde_with", + "shellexpand", + "signal-hook", + "sql-builder", + "sqlx", + "thiserror 2.0.18", + "time", + "tokio", + "tokio-stream", + "toml_edit", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tower", + "tower-http", + "tracing", + "tracing-appender", + "tracing-subscriber", + "typed-builder", + "unicode-segmentation", + "unicode-width 0.2.2", + "url", + "uuid", + "vt100", + "whoami 2.1.1", +] + +[[package]] +name = "turtle-daemon" +version = "18.16.1" +dependencies = [ + "arboard", + "async-trait", + "atuin-nucleo", + "atuin-nucleo-matcher", + "axum", + "base64", + "clap", + "clap_complete", + "clap_complete_nushell", + "colored", + "config", + "crossterm", + "crypto_secretbox", + "daemonize", + "dashmap", + "directories", + "eyre", + "fs-err", + "fs4", + "fuzzy-matcher", + "hyper-util", + "indicatif", + "interim", + "itertools", + "lasso", + "listenfd", + "log", + "metrics", + "metrics-exporter-prometheus", + "minspan", + "norm", + "notify", + "portable-pty", + "prost", + "protox", + "rand 0.8.5", + "ratatui", + "regex", + "reqwest", + "rmp", + "runtime-format", + "rustix", + "rustls", + "rusty_paserk", + "rusty_paseto", + "semver", + "serde", + "serde_json", + "serde_regex", + "serde_with", + "shellexpand", + "signal-hook", + "sql-builder", + "sqlx", + "thiserror 2.0.18", + "time", + "tokio", + "tokio-stream", + "toml_edit", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tower", + "tower-http", + "tracing", + "tracing-appender", + "tracing-subscriber", + "typed-builder", + "unicode-segmentation", + "unicode-width 0.2.2", + "url", + "uuid", + "vt100", + "whoami 2.1.1", +] + +[[package]] +name = "turtle-server" +version = "18.16.1" +dependencies = [ + "arboard", + "async-trait", + "atuin-nucleo", + "atuin-nucleo-matcher", + "axum", + "base64", + "clap", + "clap_complete", + "clap_complete_nushell", + "colored", + "config", + "crossterm", + "crypto_secretbox", + "daemonize", + "dashmap", + "directories", + "eyre", + "fs-err", + "fs4", + "fuzzy-matcher", + "hyper-util", + "indicatif", + "interim", + "itertools", + "lasso", + "listenfd", + "log", + "metrics", + "metrics-exporter-prometheus", + "minspan", + "norm", + "notify", + "portable-pty", + "prost", + "protox", + "rand 0.8.5", + "ratatui", + "regex", + "reqwest", + "rmp", + "runtime-format", + "rustix", + "rustls", + "rusty_paserk", + "rusty_paseto", + "semver", + "serde", + "serde_json", + "serde_regex", + "serde_with", + "shellexpand", + "signal-hook", + "sql-builder", + "sqlx", + "thiserror 2.0.18", + "time", + "tokio", + "tokio-stream", + "toml_edit", + "tonic", + "tonic-prost", + "tonic-prost-build", + "tower", + "tower-http", + "tracing", + "tracing-appender", + "tracing-subscriber", + "typed-builder", + "unicode-segmentation", + "unicode-width 0.2.2", + "url", + "uuid", + "vt100", + "whoami 2.1.1", +] + +[[package]] name = "typed-builder" version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" |
