diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2026-03-04 00:47:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-04 00:47:17 +0100 |
| commit | 0685cb414d2d163ef84106b37029d24aa154694c (patch) | |
| tree | 3b4f68ef5a6b75b647b8b5e44dd509bd99477edb /crates/atuin-shell/Cargo.toml | |
| parent | fix: clear script database before rebuild to prevent unique constraint violat... (diff) | |
| download | atuin-0685cb414d2d163ef84106b37029d24aa154694c.zip | |
feat: initial draft of atuin-shell (#3206)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if
you're adding a new feature or changing an existing one, we'd really
appreciate if you open an issue, post on the forum, or drop in on
Discord -->
## 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 <noreply@anthropic.com>
Diffstat (limited to 'crates/atuin-shell/Cargo.toml')
| -rw-r--r-- | crates/atuin-shell/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
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" |
