31 lines
782 B
TOML
31 lines
782 B
TOML
[package]
|
|
name = "ahab"
|
|
description = "docker compose wrapper for django projects, with service detection and database dumps"
|
|
readme = "README.md"
|
|
version = "0.4.2"
|
|
edition = "2024"
|
|
rust-version = "1.85"
|
|
license = "MIT"
|
|
authors = ["Matej Janežič <matej.janezic@aflabs.com>"]
|
|
repository = "https://git.aflabs.org/janezicmatej/ahab"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6.6", features = ["derive", "env"] }
|
|
clap_complete = "4.6.9"
|
|
anyhow = "1.0.104"
|
|
serde_json = "1.0.145"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.6.6", features = ["derive", "env"] }
|
|
clap_complete = "4.6.9"
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[lints.clippy]
|
|
dbg_macro = "warn"
|
|
todo = "warn"
|