-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
59 lines (55 loc) · 2.12 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "watchbind"
version = "0.2.1"
authors = ["Fritz Rehde <[email protected]>"]
edition = "2021"
license-file = "LICENSE.md"
documentation = "https://github.com/fritzrehde/watchbind"
homepage = "https://github.com/fritzrehde/watchbind"
repository = "https://github.com/fritzrehde/watchbind"
description = "A CLI menu for periodically watching a program's output and executing commands on its lines through keybindings"
[dependencies]
clap = { version = "4.4.18", default-features = false, features = ["std", "help", "cargo", "derive", "error-context", "string", "color", "usage", "wrap_help"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
toml = { version = "0.8.8", default-features = false, features = ["parse"] }
ratatui = "0.25.0"
crossterm = { version = "0.27", features = ["events", "event-stream"] }
itertools = "0.12.0"
anyhow = "1.0.79"
indoc = "2.0.4"
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "into_iterator", "as_ref"] }
tabwriter = "1.4.0"
parse-display = "0.8.2"
derive-new = "0.6.0"
simplelog = "0.12.1"
log = "0.4.20"
ranges = "0.3.3"
# TODO: maybe we don't need all tokio and futures features, try to reduce
tokio = { version = "1.35.1", features = ["full"] }
futures = "0.3.30"
ansi-to-tui = "3.1.0"
once_cell = "1.19.0"
strum = { version = "0.25.0", features = ["derive"] }
tabled = { version = "0.15.0", features = ["ansi"] }
terminal_size = "0.3.0"
owo-colors = "4.0.0"
dirs = "5.0.1"
const_format = "0.2.32"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.3.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[dev-dependencies]
derive_builder = "0.12.0"