Skip to content

Commit 417bb70

Browse files
chore: update readme
Signed-off-by: Henry Gressmann <[email protected]>
1 parent ef13c58 commit 417bb70

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Cargo.lock

+21-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## Why TinyWasm?
1414

15-
- **Tiny**: TinyWasm is designed to be as small as possible without significantly compromising performance or functionality.
15+
- **Tiny**: TinyWasm is designed to be as small as possible without significantly compromising performance or functionality (< 6000 lines of code).
1616
- **Portable**: TinyWasm runs on any platform that Rust can target, including WebAssembly itself, with minimal external dependencies.
1717
- **Lightweight**: TinyWasm is easy to integrate and has a low call overhead, making it suitable for scripting and embedding.
1818

crates/tinywasm/src/store/memory.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use alloc::vec;
22
use alloc::vec::Vec;
33
use tinywasm_types::{MemoryType, ModuleInstanceAddr};
44

5-
use crate::{Error, Result};
5+
use crate::{log, Error, Result};
66

77
const PAGE_SIZE: usize = 65536;
88
const MAX_PAGES: usize = 65536;

0 commit comments

Comments
 (0)