[package]
edition = "2021"
name = "plausible-cli"
version = "2.0.0"
authors = ["Vicente Reig Rincon de Arellano <hey@vicente.services>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for Plausible Analytics with rate-limit aware queueing and multi-account support"
homepage = "https://github.com/vicentereig/plausible-cli"
documentation = "https://github.com/vicentereig/plausible-cli/blob/main/docs/llms-full.txt"
readme = "README.md"
keywords = [
"analytics",
"plausible",
"cli",
"automation",
"http-client",
]
categories = [
"command-line-utilities",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/vicentereig/plausible-cli"
[lib]
name = "plausible_cli"
path = "src/lib.rs"
[[bin]]
name = "plausible"
path = "src/main.rs"
[[test]]
name = "cli_snapshots"
path = "tests/cli_snapshots.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.directories]
version = "5"
[dependencies.governor]
version = "0.6"
features = [
"std",
"jitter",
]
default-features = false
[dependencies.keyring]
version = "2"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"brotli",
"gzip",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tabled]
version = "0.15"
[dependencies.thiserror]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"serde",
"macros",
"formatting",
"parsing",
]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.url]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.httpmock]
version = "0.7"
[dev-dependencies.insta]
version = "1.38"
features = ["glob"]
[dev-dependencies.tempfile]
version = "3"