chore: Add Cargo.lock for muxox package
- Tracks dependencies and ensures reproducible builds - Automatically generated by Cargo
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
*
|
||||
!crates/
|
||||
!crates/**
|
||||
!.gitignore
|
||||
!Cargo.toml
|
||||
|
@@ -1,4 +1,5 @@
|
||||
[workspace]
|
||||
resolver = "3"
|
||||
members = [
|
||||
"crates/muxox"
|
||||
]
|
||||
|
1209
crates/muxox/Cargo.lock
generated
Normal file
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
29
crates/muxox/Cargo.toml
Normal 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 = []
|
Reference in New Issue
Block a user