warrah 0.1.0

Warrah: A command-line utility and Rust library that sloppily removes code comments from a text file, supporting 60+ programming languages.
[[bench]]
harness = false
name = "comment_remover"
path = "benches/comment_remover.rs"

[[bench]]
harness = false
name = "comment_remover_large_file"
path = "benches/comment_remover_large_file.rs"

[[bench]]
harness = false
name = "comment_remover_single_line"
path = "benches/comment_remover_single_line.rs"

[[bench]]
harness = false
name = "detect_language"
path = "benches/detect_language.rs"

[[bench]]
harness = false
name = "integration"
path = "benches/integration.rs"

[[bench]]
harness = false
name = "integration_call_function"
path = "benches/integration_call_function.rs"

[[bin]]
name = "warrah"
path = "src/main.rs"

[dependencies.memchr]
version = "2.7.4"

[dev-dependencies.criterion]
version = "0.5.1"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["command-line-utilities", "text-processing"]
description = "Warrah: A command-line utility and Rust library that sloppily removes code comments from a text file, supporting 60+ programming languages."
documentation = "https://docs.rs/warrah"
edition = "2021"
homepage = "https://github.com/evgenyneu/warrah"
keywords = ["text", "CLI", "LLM"]
license = "Unlicense"
name = "warrah"
readme = "README.md"
repository = "https://github.com/evgenyneu/warrah"
version = "0.1.0"

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