git2prompt 0.4.3

git2prompt is a command-line tool that takes a GitHub repository URL, downloads its contents, and generates a single text file optimized for use as input to AI tools.
Documentation
[[bin]]
name = "git2prompt"
path = "src/main.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5.46"

[dependencies.futures]
version = "0.3"

[dependencies.git2]
version = "0.20.2"

[dependencies.ignore]
version = "0.4.25"

[dependencies.reqwest]
features = ["json", "rustls-tls"]
version = "0.12.23"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.tokio]
features = ["full"]
version = "1.47.1"

[dependencies.toml]
version = "0.9.11"

[dependencies.walkdir]
version = "2.3"

[lib]
name = "git2prompt"
path = "src/lib.rs"

[package]
authors = ["Fabio Thomaz Molinar <fabiomolinar@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-interface", "parsing", "text-processing"]
description = "git2prompt is a command-line tool that takes a GitHub repository URL, downloads its contents, and generates a single text file optimized for use as input to AI tools."
edition = "2024"
keywords = ["command-line", "parser", "crawler", "AI", "git2prompt"]
license = "Apache-2.0"
name = "git2prompt"
readme = "README.md"
repository = "https://github.com/fabiomolinar/git2prompt"
version = "0.4.3"

[profile.dev]
opt-level = 0

[profile.release]
opt-level = 3

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"