faucet-cli 1.9.0

Config-driven CLI runner for faucet-stream pipelines (YAML / JSON, Meltano-style)
Documentation
# YAML equivalent of `faucet-stream/examples/webhook_to_csv.rs`.
# HTTP receiver → CSV file with semicolon delimiter.
version: 1
name: webhook_to_csv

pipeline:
  source:
    type: webhook
    config:
      listen_addr: 127.0.0.1:9090
      path: /inbox
      max_payloads: 5000
      timeout_secs: 120

  sink:
    type: csv
    config:
      path: webhooks.csv
      delimiter: 59     # b';'
      write_headers: true
      append: true