[package]
edition = "2024"
rust-version = "1.88"
name = "repon"
version = "0.30.5"
authors = ["Paul Chiu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal UI for the outer loop: seeing many git repos at once and acting on many in one gesture"
homepage = "https://github.com/paulchiu/repon"
readme = "README.md"
keywords = [
"git",
"tui",
"worktree",
"monorepo",
"terminal",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/paulchiu/repon"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
]
[[bin]]
name = "repon"
path = "src/main.rs"
[[test]]
name = "adr_enforcement"
path = "tests/adr_enforcement.rs"
[[test]]
name = "config_command"
path = "tests/config_command.rs"
[[test]]
name = "config_flag"
path = "tests/config_flag.rs"
[[test]]
name = "config_reload_paths"
path = "tests/config_reload_paths.rs"
[[test]]
name = "docs_register"
path = "tests/docs_register.rs"
[[test]]
name = "sets_command"
path = "tests/sets_command.rs"
[[test]]
name = "status_command"
path = "tests/status_command.rs"
[[test]]
name = "terminal_restoration"
path = "tests/terminal_restoration.rs"
[[test]]
name = "theme_flag"
path = "tests/theme_flag.rs"
[dependencies.ansi-to-tui]
version = "=8.0.1"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.crossbeam-channel]
version = "0.5.16"
[dependencies.crossterm]
version = "0.29.0"
features = ["serde"]
[dependencies.directories]
version = "6.0.0"
[dependencies.etcetera]
version = "0.11.0"
[dependencies.globset]
version = "0.4.20"
[dependencies.humantime-serde]
version = "1.1.1"
[dependencies.libc]
version = "0.2.189"
[dependencies.ratatui]
version = "0.30"
[dependencies.rayon]
version = "1.12.0"
[dependencies.repon-core]
version = "0.30.5"
features = ["serde"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_ignored]
version = "0.1.14"
[dependencies.serde_json]
version = "1.0.145"
[dependencies.shell-words]
version = "1.1.1"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.toml]
version = "1.1.4"
[dependencies.toml_edit]
version = "0.25.13"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dependencies.unicode-segmentation]
version = "1.13.3"
[dev-dependencies.repon-core]
version = "0.30.5"
features = ["test-util"]
[dev-dependencies.unicode-width]
version = "0.2.2"