From 3223d93cb3c77ab02aa0a35f2a8314e447cee9a4 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 9 Jul 2026 21:43:23 +0200 Subject: chore: Separate daemon, client, server, and lib into crates --- Cargo.lock | 238 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 238 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 3e1354f0..d2d4c527 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4796,6 +4796,244 @@ version = "0.2.5" 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" -- cgit v1.3.1