camo-rs 0.1.1

Camo proxies insecure HTTP images over HTTPS, preventing mixed content warnings on secure pages.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "server")]
mod reqwest_impl;
#[cfg(feature = "server")]
pub use reqwest_impl::ReqwestClient;

#[cfg(feature = "worker")]
mod worker_impl;
#[cfg(feature = "worker")]
pub use worker_impl::WorkerFetchClient;