Rust_Grammar 2.1.0

A comprehensive, production-ready text analysis tool
Documentation
[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"

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

[[bin]]
name = "api-server"
path = "src/bin/api-server.rs"

[[bin]]
name = "api-server-enhanced"
path = "src/bin/api-server-enhanced.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.axum]
version = "0.7"

[dependencies.clap]
features = ["derive", "cargo"]
version = "4.5"

[dependencies.lazy_static]
version = "1.4"

[dependencies.pulldown-cmark]
optional = true
version = "0.9"

[dependencies.rayon]
version = "1.8"

[dependencies.regex]
version = "1.10"

[dependencies.scraper]
optional = true
version = "0.18"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.toml]
version = "0.8"

[dependencies.tower]
version = "0.4"

[dependencies.tower-http]
features = ["cors"]
version = "0.5"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter", "fmt", "ansi"]
version = "0.3"

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.unicode-segmentation]
version = "1.11"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.tempfile]
version = "3.8"

[dev-dependencies.test-case]
version = "3.3"

[features]
default = ["markdown", "html"]
full = ["markdown", "html"]
html = ["scraper"]
markdown = ["pulldown-cmark"]

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

[package]
authors = ["Eeman Majumder eeman.majumder@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "command-line-utilities"]
description = "A comprehensive, production-ready text analysis tool"
edition = "2021"
keywords = ["text", "analysis", "nlp", "grammar", "readability"]
license = "MIT"
name = "Rust_Grammar"
readme = "README.md"
repository = "https://github.com/yourusername/text-analyzer"
version = "2.1.0"

[profile.bench]
inherits = "release"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3

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