nlopes / actix-web-prom

Actix-web middleware to expose Prometheus metrics
MIT License
89 stars 56 forks source link

feat: improve compatibility with anyhow #67

Closed ctron closed 1 year ago

ctron commented 2 years ago

Anyhow can work with boxed errors, but only of they are also Send and Sync.

Both traits are implemented by error used anyway, so they just need to be declared, to make this crate work with anyhow out of the box.