[package]
edition = "2024"
rust-version = "1.86"
name = "cargo-hammerwork"
version = "1.15.5"
authors = ["CodingAnarchy <noreply@codinganarchy.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive cargo subcommand for managing Hammerwork job queues with webhook management, event streaming, database operations, and advanced monitoring capabilities"
homepage = "https://github.com/CodingAnarchy/hammerwork"
documentation = "https://docs.rs/hammerwork"
readme = "README.md"
keywords = [
"cargo",
"cli",
"hammerwork",
"job-queue",
"database",
]
categories = [
"command-line-utilities",
"development-tools::cargo-plugins",
]
license = "MIT"
repository = "https://github.com/CodingAnarchy/hammerwork"
resolver = "2"
[lib]
name = "cargo_hammerwork"
path = "src/lib.rs"
[[bin]]
name = "cargo-hammerwork"
path = "src/main.rs"
[[test]]
name = "graph_output_format_tests"
path = "tests/graph_output_format_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "sql_query_tests"
path = "tests/sql_query_tests.rs"
[[test]]
name = "workflow_visualization_tests"
path = "tests/workflow_visualization_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.0"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7.0"
[dependencies.cron]
version = "0.12"
[dependencies.dirs]
version = "5.0"
[dependencies.hammerwork]
version = "1.15.5"
features = [
"postgres",
"mysql",
]
[dependencies.indicatif]
version = "0.17"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"chrono",
"uuid",
"json",
"postgres",
"mysql",
]
[dependencies.tokio]
version = "1.0"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tokio-test]
version = "0.4"