http-client
http-client copied to clipboard
feat: make HttpClient dyn-clonable
Kinda reverts https://github.com/http-rs/http-client/pull/48
Related to https://github.com/http-rs/surf/issues/237
Desirable for Surf-level config.
Turns out this still doesn't really work for surf config because Arc::make_mut() is only able to use Clone's .clone() internally, and dyn Thing can't be cloned, because stack sizing or something along those lines.