[package]
edition = "2024"
name = "stmo-cli"
version = "0.4.0"
build = false
exclude = [
"/CLAUDE.md",
"/.pre-commit-config.yaml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for version controlling Redash queries and dashboards"
readme = "README.md"
keywords = [
"redash",
"cli",
"sql",
"version-control",
]
categories = ["command-line-utilities"]
license = "MPL-2.0"
repository = "https://github.com/JohanLorenzo/stmo-cli"
[lib]
name = "stmo_cli"
path = "src/lib.rs"
[[bin]]
name = "stmo-cli"
path = "src/main.rs"
[[test]]
name = "api_integration"
path = "tests/api_integration.rs"
[[test]]
name = "dashboard_commands"
path = "tests/dashboard_commands.rs"
[[test]]
name = "deploy_commands"
path = "tests/deploy_commands.rs"
[[test]]
name = "update_checker"
path = "tests/update_checker.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "6"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.6"