blob: baacf776f1fc6dba9bdabf298e70c5bb39a0ca59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "atuin-pty-proxy"
edition = "2024"
description = "a PTY proxy for atuin"
version = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
clap = { workspace = true }
[target.'cfg(unix)'.dependencies]
crossterm = { workspace = true }
eyre = { workspace = true }
portable-pty = "0.9"
signal-hook = "0.3"
vt100 = { workspace = true }
|