What's Changed
- Leptos 0.6 by @nicoburniske in #8
- Remove lazy_static
Arc<RwLock<HashMap<CachedImage, String>>>
in favor of ImageOptimizer struct that containsArc<Dashmap<CachedImage, String>>
- Remove cache and introspect modules. Only dynamic caching at runtime is supported
- Add semaphore to limit concurrent image processing requests. Image processing is extremely cpu intensive and without semaphore you can easily blow up your server.
- Add trait for adding route to router. Still need to make the route configurable
- Make route configurable
- Make cache file path configurable
Full Changelog: https://github.com/nicoburniske/leptos_image/commits/v0.2.0