keelrun 0.4.1

Keel as a Rust front end: #[keel::wrap] plus a reqwest-middleware adapter, routing calls through the keel-core Engine chain (cache/rate/breaker/timeout/retry) from one `keel.toml`. No import hook (Rust has none to hang off of) — call `keel::init()` once from your own `main`. Published as `keelrun` (plain `keel` is taken on crates.io); add it as `cargo add keelrun --rename keel` so `#[keel::wrap]` resolves — see README.md.
Documentation
1
2
3
4
5
6
7
error: #[keel::wrap] requires `target = "..."`, e.g. #[keel::wrap(target = "orders-api")] (explicit-target-only in v1 — see crates/keel-macros/src/lib.rs for why signature inference is deferred)
 --> tests/ui/fail_missing_target.rs:4:1
  |
4 | #[keel::wrap]
  | ^^^^^^^^^^^^^
  |
  = note: this error originates in the attribute macro `keel::wrap` (in Nightly builds, run with -Z macro-backtrace for more info)