git-loom 0.18.0

A Git CLI tool that weaves together multiple feature branches into integration branches
[package]
name = "git-loom"
version = "0.18.0"
edition = "2024"
rust-version = "1.90"
description = "A Git CLI tool that weaves together multiple feature branches into integration branches"
license = "MIT"
repository = "https://github.com/narnaud/git-loom"
homepage = "https://narnaud.github.io/git-loom"
readme = "README.md"
keywords = [ "git", "cli", "branches", "workflow" ]
categories = [ "command-line-utilities", "development-tools" ]
exclude = [ ".claude/", ".github/" ]

[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "4", features = [ "derive" ] }
colored = "3"
inquire = "0.9"
git2 = "0.20"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
shell-escape = "0.1"
tempfile = "3"
ratatui = "0.30.0"
crossterm = "0.29.0"
terminal-colorsaurus = "1"
terminal_size = "0.4"

[profile.release]
lto = true
strip = true

[features]
vendored-openssl = [ "git2/vendored-openssl" ]