[package]
edition = "2024"
rust-version = "1.85"
name = "combine_code"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool to merge source files by extension while respecting .gitignore rules"
homepage = "https://github.com/manishsingh10895/combine_code"
documentation = "https://docs.rs/combine_code"
readme = "README.md"
keywords = [
"cli",
"merge",
"code",
"gitignore",
"developer-tools",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/manishsingh10895/combine_code"
[[bin]]
name = "combine_code"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ignore]
version = "0.4"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.10"