Skip to content

Releases: commonkestrel/image_search

v0.4.4

07 Apr 07:08
Compare
Choose a tag to compare

Small bugfix:

  • Fixed API changes (#6)
  • Reduced code repetition between blocking and async
  • Added a blocking example

v0.4.2

16 Mar 04:31
Compare
Choose a tag to compare

Bugfix:

  • Fixed tokio runtime error (#2)
  • Updated dependencies

v0.4.1

16 Mar 04:19
Compare
Choose a tag to compare

Small bug fixes and changes:

  • Changed default client to hyper (fixed #1)
  • Improved docs
  • Replaced Result<T, Error> with SearchResult<T> (Same type, just used inconsistently)

v0.4.0

11 Feb 18:26
Compare
Choose a tag to compare

Transition away from reqwest and tokio to surf and async-std.

What's changed:

  • Removed reqwest in favor of surf
  • Remove tokio in favor of async-std
  • Standardize Error and SearchResult across blocking and async APIs
  • Add optional http backends thanks to surf through features
  • Remove unnecessary unwrap()s in favor of explicitly returning an error or expect()

0.3.2

23 Dec 07:29
Compare
Choose a tag to compare

Added a homepage to Cargo, as well as inverting the logo for visibility on crates.io

0.3.1

22 Dec 08:38
Compare
Choose a tag to compare

Exclude logos from Cargo

0.3.0

22 Dec 08:35
Compare
Choose a tag to compare

This release contains a major revamp to the image-downloading process.

Changes:

  • Added concurrent downloading to images
  • Added adjustable timeout in case of image failure
  • Improved image downloader error handling
  • Improved documentation
  • Added logo

0.2.2

21 Dec 07:19
Compare
Choose a tag to compare

Default async searching, with optional blocking feature, similar to reqwest.