aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-shell/Cargo.toml
blob: c14072dde87720818146c5845ad35a7d6118e27d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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"