bounds-cli 0.5.0

Add a .gitignore and LICENSE to a repository
[package]
name = "bounds-cli"
version = "0.5.0"
edition = "2024"
description = "Add a .gitignore and LICENSE to a repository"
license = "AGPL-3.0-only"
repository = "https://github.com/danfq/bounds"
include = [
    "/src/**",
    "/Cargo.toml",
    "/Cargo.lock",
    "/README.md",
    "/LICENSE",
]

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

[dependencies]
anyhow = "1.0.103"
clap = {version = "4.6.2", features = ["derive"]}
cliclack = "0.5.5"
jiff = "0.2.32"
serde = { version = "1.0.228", features = ["derive"] }
ureq = { version = "3.3", features = ["json"] }