diff options
| author | Dylan <boss@tehbox.org> | 2026-06-21 15:27:50 +1200 |
|---|---|---|
| committer | Dylan <boss@tehbox.org> | 2026-06-21 15:27:50 +1200 |
| commit | db14bdce8eac0d7d83109365cbeda389febfb788 (patch) | |
| tree | 755a7d22efde8f283dc73b5b943d5c37f4caf158 /src/main.rs | |
| parent | a472b1cdaa8a1f72b96988009b3d4d9820e7128f (diff) | |
| download | tehimage-rs-db14bdce8eac0d7d83109365cbeda389febfb788.tar.gz tehimage-rs-db14bdce8eac0d7d83109365cbeda389febfb788.zip | |
feat: Moved from and to bytes to a single trait
Now called `ByteEncode`
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 2d68a02..1e78abb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,7 @@ mod reader; mod image; mod bmp; mod writer; +mod byte_encode; fn main() { let file = File::open("smiley.bmp").expect("File does not exist"); |
