[package] name = "linty" version = "0.4.0" edition = "2021" repository = "https://github.com/rwblickhan/linty.git" description = "Simple, language-agnostic linter" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.70" clap = { version = "4.1.11", features = ["derive"] } clap_complete = "4.4.4" globset = "0.4.10" ignore = "0.4.20" regex = "1.8.4" serde = { version = "1.0.157", features = ["derive"] } serde_json = "1.0.94" toml = "0.7.8" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.2.0" # CI backends to support (see 'cargo dist generate-ci') ci = ["github"] # The installers to generate for each app installers = ["shell", "powershell", "npm", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "rwblickhan/homebrew-linty" # Target platforms to build apps for (Rust target-triple syntax) targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"] # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz) unix-archive = ".tar.gz" # A namespace to use when publishing this package to the npm registry npm-scope = "@rwblickhan" # Publish jobs to run in CI publish-jobs = ["homebrew"]