diff --git a/README.md b/README.md
index 76610acd..d73f3705 100644
--- a/README.md
+++ b/README.md
@@ -107,8 +107,17 @@ import { TextDecoderStream, TextEncoderStream } from '@exodus/bytes/encoding-lit
```
This reduces the bundle size 9x:\
-from 90 KiB gzipped for `@exodus/bytes/encoding.js` to 10 KiB gzipped for `@exodus/bytes/encoding-lite.js`.\
-(For comparison, `text-encoding` module is 190 KiB gzipped, and `iconv-lite` is 194 KiB gzipped):
+from 94 KiB gzipped for `@exodus/bytes/encoding.js` to 10 KiB gzipped for `@exodus/bytes/encoding-lite.js`.\
+(For comparison, `text-encoding` and `iconv-lite` are each over 195 KiB gzipped):
+
+| import | size |
+| - | - |
+| `@exodus/bytes/encoding-browser.js` |  |
+| `@exodus/bytes/encoding-lite.js` |  |
+| `@exodus/bytes/encoding.js` |  |
+| `text-encoding` |  |
+| `iconv-lite` |  |
+| `whatwg-encoding` |  |
It still supports `utf-8`, `utf-16le`, `utf-16be` and all single-byte encodings specified by the spec,
the only difference is support for legacy multi-byte encodings.
@@ -667,7 +676,7 @@ Create a view of a TypedArray in the specified format (`'uint8'` or `'buffer'`)
> [!IMPORTANT]
> Does not copy data, returns a view on the same underlying buffer
-### @exodus/bytes/encoding.js
+### @exodus/bytes/encoding.js 
Implements the [Encoding standard](https://encoding.spec.whatwg.org/):
[TextDecoder](https://encoding.spec.whatwg.org/#interface-textdecoder),
@@ -778,7 +787,7 @@ only expects lowercased encoding name:
new TextDecoder(getBOMEncoding(input) ?? fallbackEncoding).decode(input)
```
-### @exodus/bytes/encoding-lite.js
+### @exodus/bytes/encoding-lite.js 
The exact same exports as `@exodus/bytes/encoding.js` are also exported as
`@exodus/bytes/encoding-lite.js`, with the difference that the lite version does not load
@@ -837,7 +846,7 @@ true
'%'
```
-### @exodus/bytes/encoding-browser.js
+### @exodus/bytes/encoding-browser.js 
Same as `@exodus/bytes/encoding.js`, but in browsers instead of polyfilling just uses whatever the
browser provides, drastically reducing the bundle size (to less than 2 KiB gzipped).