23 lines
590 B
TOML
23 lines
590 B
TOML
[package]
|
|
name = "ahab"
|
|
description = "docker cli wrapper"
|
|
readme = "README.md"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Matej Janežič <janezic.mj@gmail.com>"]
|
|
repository = "https://github.com/janezicmatej/ahab.git"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
# clap_complete = "4.5.35"
|
|
anyhow = "1.0.91"
|
|
dotenvy = "0.15.7"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
clap_complete = "4.5.35"
|