-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 968 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "cahier"
version = "0.1.5"
edition = "2021"
description = "A terminal session recorder and manager."
license = "MIT"
repository = "https://github.com/bistace/cahier"
homepage = "https://github.com/bistace/cahier"
keywords = ["terminal", "recording", "sqlite", "history", "cli"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.4", features = ["derive"] }
crossterm = "0.27"
ctrlc = "3.5.1"
dirs = "6.0.0"
libc = "0.2"
nix = { version = "0.30.1", features = ["signal", "process", "poll"] }
nu-ansi-term = "0.49.0"
portable-pty = "0.8"
reedline = "0.26"
ratatui = "0.29"
rusqlite = { version = "0.30", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shlex = "1.3"
strip-ansi-escapes = "0.2"
syntect = "5.3.0"
textwrap = "0.16"
tui-textarea = "0.7.0"
[dev-dependencies]
tempfile = "3.10.1"