[package]
edition = "2024"
rust-version = "1.88"
name = "repon-core"
version = "0.30.1"
authors = ["Paul Chiu"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rendering-agnostic core for Repon: computes git state, knows nothing about terminals"
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",
]
[features]
serde = [
"dep:serde",
"gix/serde",
]
test-util = []
[lib]
name = "repon_core"
path = "src/lib.rs"
[[test]]
name = "action_dedicated_pool"
path = "tests/action_dedicated_pool.rs"
[dependencies.crossbeam-channel]
version = "0.5.16"
[dependencies.gix]
version = "0.87.1"
features = [
"max-performance-safe",
"sha1",
"basic",
"status",
"dirwalk",
"blocking-network-client",
"blocking-http-transport-reqwest-rust-tls",
"credentials",
]
default-features = false
[dependencies.globset]
version = "0.4.20"
[dependencies.libc]
version = "0.2.189"
[dependencies.rayon]
version = "1.12.0"
[dependencies.serde]
version = "1.0.229"
features = [
"derive",
"rc",
]
optional = true
[dev-dependencies.tempfile]
version = "3.27.0"