diff --git a/README.md b/README.md index 3e3f757..4c111c5 100644 --- a/README.md +++ b/README.md @@ -38,3 +38,8 @@ Implemented: - Chat messages (euph, twitch) - Instant camera - Procedural easter egg generator + +## Todos + +- [ ] Sensible limits on all string inputs +- [ ] Better debug logging diff --git a/showbits-typst/src/lib.rs b/showbits-typst/src/lib.rs index 1168e23..179144e 100644 --- a/showbits-typst/src/lib.rs +++ b/showbits-typst/src/lib.rs @@ -215,7 +215,6 @@ impl World for Typst { } fn source(&self, id: FileId) -> FileResult { - // TODO Remove debug logging println!("Accessing source {id:?}"); let bytes = if let Some(spec) = id.package() { @@ -230,7 +229,6 @@ impl World for Typst { } fn file(&self, id: FileId) -> FileResult { - // TODO Remove debug logging println!("Accessing file {id:?}"); let bytes = if let Some(spec) = id.package() {