[package]
edition = "2021"
name = "sonda"
version = "1.2.2"
authors = ["David Flores <davidflores77@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for Sonda — synthetic telemetry generator for testing observability pipelines"
homepage = "https://github.com/davidban77/sonda"
readme = "README.md"
keywords = [
"telemetry",
"metrics",
"observability",
"testing",
"synthetic",
]
categories = [
"command-line-utilities",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/davidban77/sonda"
[features]
config = ["sonda-core/config"]
default = [
"config",
"http",
]
http = ["sonda-core/http"]
kafka = ["sonda-core/kafka"]
otlp = ["sonda-core/otlp"]
remote-write = ["sonda-core/remote-write"]
[[bin]]
name = "sonda"
path = "src/main.rs"
[[test]]
name = "cli_catalog"
path = "tests/cli_catalog.rs"
[[test]]
name = "cli_run_dispatch"
path = "tests/cli_run_dispatch.rs"
[[test]]
name = "csv_import"
path = "tests/csv_import.rs"
[[test]]
name = "dry_run_format"
path = "tests/dry_run_format.rs"
[[test]]
name = "dry_run_verbose_flags"
path = "tests/dry_run_verbose_flags.rs"
[[test]]
name = "example_scenarios"
path = "tests/example_scenarios.rs"
[[test]]
name = "init_v2_output"
path = "tests/init_v2_output.rs"
[[test]]
name = "json_output"
path = "tests/json_output.rs"
[[test]]
name = "log_scenarios"
path = "tests/log_scenarios.rs"
[[test]]
name = "pack_yaml_validation"
path = "tests/pack_yaml_validation.rs"
[[test]]
name = "quiet_flag"
path = "tests/quiet_flag.rs"
[[test]]
name = "scenario_yaml_validation"
path = "tests/scenario_yaml_validation.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ctrlc]
version = "3"
[dependencies.dialoguer]
version = "0.12"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_ng]
version = "0.10"
[dependencies.sonda-core]
version = "1.2.2"
[dev-dependencies.tempfile]
version = "3"