From 0685cb414d2d163ef84106b37029d24aa154694c Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Wed, 4 Mar 2026 00:47:17 +0100 Subject: feat: initial draft of atuin-shell (#3206) ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing --------- Co-authored-by: Claude --- crates/atuin-shell/Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 crates/atuin-shell/Cargo.toml (limited to 'crates/atuin-shell/Cargo.toml') diff --git a/crates/atuin-shell/Cargo.toml b/crates/atuin-shell/Cargo.toml new file mode 100644 index 00000000..c14072dd --- /dev/null +++ b/crates/atuin-shell/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "atuin-shell" +edition = "2024" +description = "a terminal emulator for atuin" + +version = { workspace = true } +authors = { workspace = true } +rust-version = { workspace = true } +license = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } + +[[bin]] +name = "atuin-shell" +path = "src/main.rs" + +[dependencies] +clap = { workspace = true } + +[target.'cfg(all(unix, not(target_os = "illumos")))'.dependencies] +crossterm = { workspace = true } +eyre = { workspace = true } +portable-pty = "0.8" +signal-hook = "0.3" -- cgit v1.3.1