- Tested with Mycology.

- History is using delta's to preserve memory.
- Input in debug mode.
- Scroll code in debug mode.
- Wrap output in debug mode.
- Special error types.
- Imlement FungeSpace as a combination of Strings and a HashMap.
- Option for befunge 93, 97, 98 -> 97 runs soup.bf.
This commit is contained in:
Wim Pomp
2022-12-31 16:48:07 +01:00
parent d6df8786f8
commit 12b736ba32
8 changed files with 1174 additions and 764 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "rusty_funge"
version = "2022.12.4"
version = "2022.12.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -11,4 +11,8 @@ chrono = "0.4.23"
cursive = { version = "0.20.0", features = ["termion-backend"] }
rand = "0.8.5"
num = "0.4.0"
anyhow = "1.0.66"
anyhow = "1.0.68"
thiserror = "1.0.38"
strum = "0.24.1"
strum_macros = "0.24.3"
regex = "1.7.0"