Rob Ede
Rob Ede
I'm open to the idea of providing the necessary compatibility functions to convert to and from `http` v1 types behind a crate feature. I think that is the most helpful...
Actix Web is already thread-per-core so each worker would have its own "instance" of h2, meaning the mutexes are uncontended. IIRC things are fast in such cases.
ahh yes ```diff - #[get("/crate/:name")] + #[get("/crate/{name}")] ```
> the same concept as `label` in `shields.io`, is there any reason not to match the naming ?
thanks for your work on this 👍🏻
My bias is obviously towards Actix Web but it's interesting being involved with a different flavored project to keep knowledge of "the other side" fresh.
> In terms of popularity, Axum has more total crate downloads FWIW, those numbers are skewed quite sigificantly by its default inclusion in `tonic`. If just the router was split...
- actix-http: https://github.com/deps-rs/deps.rs/pull/224 - Actix Web: https://github.com/deps-rs/deps.rs/pull/229 - axum (lite): https://github.com/deps-rs/deps.rs/pull/225 - axum (full): https://github.com/deps-rs/deps.rs/pull/228
(@)contributors Would appreciate opinions on the above PRs. Confirmed on Tokio's discord that axum (full) is the only variant here which doesn't properly support our current routing structure. We'd have...
@dependabot rebase