[package] name = "tbll" version = "0.2.3" edition = "2021" repository = "https://github.com/dhth/tbll" description = "tbll outputs data in tabular format" homepage = "https://github.com/dhth/tbll" license-file = "LICENSE" keywords = [ "cli", "table", ] categories = [ "command-line-utilities", "text-processing" ] exclude = [ ".github", "examples", "docker-compose.yml", ] [dependencies] clap = { version = "4.5.18", features = ["derive"] } tabled = "0.16.0" [[bin]] name = "tbll" path = "src/main.rs" doc = false # 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.1" # 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 = "dhth/homebrew-tap" # Target platforms to build apps for (Rust target-triple syntax) targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] # Path that installers should place binaries in install-path = "CARGO_HOME" # Jobs to run during the "build local artifacts" phase, during which binaries are built local-artifacts-jobs = ["./release-crates"] # Publish jobs to run in CI publish-jobs = ["homebrew"] # Whether to install an updater program install-updater = false # Whether to enable GitHub Attestations github-attestations = true