chore: Add Cargo.lock for muxox package

- Tracks dependencies and ensures reproducible builds
- Automatically generated by Cargo
This commit is contained in:
geoffsee
2025-08-25 15:33:03 -04:00
parent ee75b7e59a
commit 03128161ad
4 changed files with 1240 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
*
!crates/
!crates/**
!.gitignore
!Cargo.toml

View File

@@ -1,4 +1,5 @@
[workspace]
resolver = "3"
members = [
"crates/muxox"
]

1209
crates/muxox/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

29
crates/muxox/Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "muxox"
version = "0.1.0"
edition = "2024"
description = "A terminal-based service orchestrator and process multiplexer for development workflows"
authors = ["William Seemueller <william@seemueller.io>"]
license = "MIT"
repository = "https://github.com/seemueller-io/muxox"
homepage = "https://github.com/seemueller-io/muxox"
documentation = "https://github.com/seemueller-io/muxox"
readme = "../../README.md"
keywords = ["terminal", "tui", "multiplexer", "development", "process-manager"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1"
thiserror = "1"
clap = { version = "4", features = ["derive"] }
ratatui = "0.28"
crossterm = "0.27"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
directories = "5"
libc = "0.2"
nix = { version = "0.28", features = ["signal", "process"] }
[features]
unix = []