[package] name = "supercat" version = "0.1.0" edition = "2021" authors = ["Guilherme Prokisch "] description = "A syntax highlighting alternative to cat" license = "MIT" repository = "https://github.com/guilhermeprokisch/supercat" readme = "README.md" keywords = ["syntax-highlighting", "cat", "cli"] categories = ["command-line-utilities", "text-processing"] homepage = "https://github.com/guilhermeprokisch/supercat" [dependencies] inkjet = { version = "0.10.5", features = ["all_languages", "theme"] } termcolor = "1.1" hyperpolyglot = "0.1.7" clap = { version = "4.4", features = ["derive"] } # 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.22.0" # CI backends to support ci = "github" # The installers to generate for each app installers = ["shell", "homebrew"] # A GitHub repo to push Homebrew formulas to tap = "guilhermeprokisch/homebrew-supercat" # Target platforms to build apps for (Rust target-triple syntax) targets = [ "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", ] # Path that installers should place binaries in install-path = "CARGO_HOME" # Publish jobs to run in CI publish-jobs = ["homebrew"] # Whether to install an updater program install-updater = true