lint 0.1.2

A versatile linting tool with CLI, MCP, and library interfaces
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "lint"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A versatile linting tool with CLI, MCP, and library interfaces"
homepage = "https://github.com/yingkitw/lint"
documentation = "https://docs.rs/lint"
readme = "README.md"
keywords = [
    "lint",
    "linter",
    "cli",
    "mcp",
    "code-quality",
]
categories = [
    "development-tools",
    "command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/lint"

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

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

[[bin]]
name = "lint-mcp"
path = "src/mcp_main.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "bench"
path = "examples/bench.rs"

[[example]]
name = "test_file"
path = "examples/test_file.rs"

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

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

[dependencies.anyhow]
version = "1.0"

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

[dependencies.colored]
version = "2.1"

[dependencies.glob]
version = "0.3"

[dependencies.ignore]
version = "0.4"

[dependencies.notify]
version = "6.1"

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1.10"

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

[dependencies.serde_json]
version = "1.0"

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

[dependencies.toml]
version = "0.8"

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