summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index c1f9380..d4bb721 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,7 @@
## tiny-png
-Tiny Rust PNG decoder with no dependencies (not even `std` or `alloc`).
-
-Also it has tiny code size (e.g. >8 times smaller `.wasm.gz` size compared to the `png` crate — see `check-size.sh`).
+Tiny Rust PNG decoder with no dependencies (not even `std` or `alloc`)
+and tiny code size (e.g. >8 times smaller `.wasm.gz` size compared to the `png` crate — see `check-size.sh`).
## Goals
@@ -70,7 +69,7 @@ tests and no way of enabling `--nocapture` by default *grumble grumble*).
## Performance
-Benchmarks (see `cargo bench`) show that `tiny-png` is about 50% slower than `png`
+Benchmarks (see `cargo bench`) show that `tiny-png` is about 50% slower than the `png` crate
for large images, but faster than `png` for small images.
## License