- Debug speed control, pause/run, step back, run until. - IO is a struct instead of traits. - Handprint now is wprusty. - Return code upon q instruction. - Option to quit when not implemented.
14 lines
366 B
TOML
14 lines
366 B
TOML
[package]
|
|
name = "rusty_funge"
|
|
version = "2022.12.4"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.29", features = ["derive"] }
|
|
chrono = "0.4.23"
|
|
cursive = { version = "0.20.0", features = ["termion-backend"] }
|
|
rand = "0.8.5"
|
|
num = "0.4.0"
|
|
anyhow = "1.0.66" |