-
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) · 1.19 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (33 loc) · 1.19 KB
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]
authors = ["Christopher Sardegna <fleetcom@reagentx.net>"]
categories = ["command-line-interface", "command-line-utilities"]
description = "A fleet-view supervisor for arbitrary shell commands."
edition = "2024"
exclude = [".github", "docs", "tests", ".gitignore", ".gitattributes"]
keywords = ["cli", "tui", "pty", "supervisor", "process"]
license = "GPL-3.0-or-later"
name = "fleetcom"
readme = "README.md"
repository = "https://github.com/ReagentX/fleetcom"
rust-version = "1.88"
version = "0.0.0"
[dependencies]
# Disable the unused serde integration.
alacritty_terminal = { version = "=0.26.0", default-features = false }
base64 = "=0.22.1"
crossterm = "=0.29.0"
dirs = "=6.0.0"
jzon = "=0.12.5"
# Match portable-pty's `nix` requirement to avoid duplicate versions.
nix = { version = "0.28", features = ["signal", "user", "fs"] }
portable-pty = "=0.9.0"
rustix = { version = "=1.1.4", features = ["process"] }
# Match crossterm's `signal-hook` requirement to avoid duplicate versions.
signal-hook = { version = "0.3", default-features = false }
unicode-width = "=0.2.2"
[profile.release]
# Enable link-time optimization.
lto = true
# Use one code-generation unit.
codegen-units = 1
panic = "unwind"