[package]
edition = "2024"
name = "avina-cli"
version = "2.2.0"
authors = ["Sandro-Alessio Gierens <sandro@gierens.de>"]
build = false
exclude = []
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust CLI client for the LRZ-specific features of the Openstack-based LRZ Compute Cloud."
homepage = "https://github.com/LRZ-BADW/avina"
readme = "README.md"
categories = [
"api-bindings",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/LRZ-BADW/avina"
resolver = "2"
[features]
accounting = ["avina/accounting"]
all = [
"accounting",
"budgeting",
"hello",
"pricing",
"quota",
"resources",
"user",
]
budgeting = ["avina/budgeting"]
default = ["all"]
hello = ["avina/hello"]
pricing = ["avina/pricing"]
quota = ["avina/quota"]
resources = ["avina/resources"]
user = ["avina/user"]
[[bin]]
name = "avina"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.avina]
version = "2.2"
[dependencies.avina-wire]
version = "2.2"
features = ["tabled"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tabled]
version = "0.20"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.uuid]
version = "1.20"
features = ["v4"]
[dev-dependencies.cargo-husky]
version = "1.5"
features = ["user-hooks"]
default-features = false