backlogr 0.0.1

CLI for interacting with the Taiga REST API
Documentation
[package]
name = "backlogr"
version = "0.0.1"
edition = "2021"
rust-version = "1.85.1"
description = "CLI for interacting with the Taiga REST API"
authors = ["Acosta Quintana Lautaro", "<acostaquintanalautaro@gmail.com>"]
readme = "README.md"
repository = "https://github.com/lauacosta/backlogr"
homepage = "https://github.com/lauacosta/backlogr"
documentation = "https://github.com/lauacosta/backlogr#readme"
license = "MIT"
keywords = ["ci", "kanban", "taiga"]
categories = ["command-line-utilities"]

[dependencies]
clap = { version = "4.5.38", features = ["env", "cargo","derive"] }
color-eyre = "0.6.4"
eyre = "0.6.12"
minreq = { version = "2.13.4", features = ["https-rustls","json-using-serde", "urlencoding" ]}
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.12"

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

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