[package]
edition = "2024"
name = "stmo-cli"
version = "0.11.0"
build = false
exclude = [
"/CLAUDE.md",
"/.pre-commit-config.yaml",
"/.claude",
"/xtask",
"/.cargo",
"/scripts",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Turn Claude Code into a data analyst on sql.telemetry.mozilla.org"
readme = "README.md"
keywords = [
"redash",
"cli",
"sql",
"version-control",
]
categories = ["command-line-utilities"]
license = "MPL-2.0"
repository = "https://github.com/mozilla/stmo-cli"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/{ name }-{ version }-{ target }.{ archive-format }"
bin-dir = "{ bin }{ binary-ext }"
[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 = "keychain"
path = "tests/keychain.rs"
[[test]]
name = "proxy_tunnel"
path = "tests/proxy_tunnel.rs"
[[test]]
name = "snippet_commands"
path = "tests/snippet_commands.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dialoguer]
version = "0.12"
[dependencies.moz-cli-version-check]
version = "0.2.4"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
"charset",
"http2",
"query",
]
default-features = false
[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"