-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README: Add missing
https:
prefix in many lib.rs
links
By missing `https:`, the [current crates.io page for `cavif`] and [`ravif`] seem to link straight to files in the GitHub repository, which doesn't exist. lib.rs in contrast seems to link this correctly to its own site. For `cavif`, also mention that it goes through the `ravif` crate which disambiguates the first paragraphs of both crates and makes it easier to understand the total dependency hierarchy. [current crates.io page for `cavif`]: https://crates.io/crates/cavif/1.5.6 [`ravif`]: https://crates.io/crates/ravif/0.11.11
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# `ravif` — Pure Rust library for AVIF image encoding | ||
|
||
Encoder for AVIF images. Based on [rav1e](//lib.rs/rav1e) and [avif-serialize](//lib.rs/avif-serialize). | ||
Encoder for AVIF images. Based on [`rav1e`](https://lib.rs/crates/rav1e) and [`avif-serialize`](https://lib.rs/crates/avif-serialize). | ||
|
||
The API is just a single `encode_rgba` function call that spits an AVIF image. | ||
The API is just a single `encode_rgba()` function call that spits an AVIF image. | ||
|
||
This library powers [`cavif`](//lib.rs/cavif) encoder. It has encoding configuration specifically tuned for still images, and gives better quality/performance than stock rav1e. | ||
This library powers the [`cavif`](https://lib.rs/crates/cavif) encoder. It has an encoding configuration specifically tuned for still images, and gives better quality/performance than stock `rav1e`. |