small software-rendered rust tty
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..eecf677 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "pattypan" +version = "0.1.0" +edition = "2024" + +[dependencies] +anstream = "0.6.18" +anyhow = "1.0.98" +ctlfun = { git = "https://git.buny.computer/lambda/ctlfun.git", version = "0.1.0" } +fontdue = "0.9.3" +implicit-fn = "0.1.0" +libc = "0.2.172" +minifb = "0.28.0" +nix = { version = "0.30.1", features = ["process", "term"] } +parking_lot = "0.12.3" |