[package]
name = "flavorcli"
version = "1.0.1"
authors = ["Lordseriouspig <lordseriouspig@gmail.com>"]
edition = "2024"
description = "A command line interface to interact with FlavorTown"
readme = "README.MD"
repository = "https://github.com/lordseriouspig/flavorcli"
license = "GPL-3.0-or-later"
keywords = ["flavortown","hack-club"]
categories = ["command-line-utilities"]
[lints.rust]
unsafe_code = "warn"
[[bin]]
name = "flavor"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.54", features = ["derive"] }
reqwest = { version = "0.13.1", features = ["json", "multipart", "stream", "query", "form"] }
tokio = { version = "1.49.0", features = ["full"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
keyring = { version = "3.6.3", features = ["apple-native", "windows-native", "sync-secret-service"] }
indicatif = "0.18.3"
anyhow = "1.0.100"
log = "0.4.29"
colog = "1.4.0"
clap-verbosity-flag = "3.0.4"
owo-colors = "4.2.3"
chrono = "0.4.43"
textwrap = "0.16.2"
comfy-table = "7.2.2"
sentry = "0.46.1"
sentry-anyhow = "0.46.1"
sentry-log = "0.46.1"
env_logger = "0.11.8"
futures = "0.3.31"
update-informer = { version = "1.3.0", features = ["github"] }