small software-rendered rust tty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "pattypan"
version = "0.1.0"
edition = "2024"

[dependencies]
anstream = "0.6.18"
anyhow = "1.0.98"
array_chunks = "1.0.0"
atools = "0.1.6"
chumsky = { git = "https://github.com/zesterer/chumsky", version = "0.13.0", features = [
    "nightly",
] }
color-hex = "0.2.0"
ctlfun = { git = "https://git.bendn.org/ctlfun" }
dsb = { git = "https://git.bendn.org/dsb" }
fimg = { git = "https://git.bendn.org/fimg" }

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"
swash = "0.2.4"
winit = { version = "0.30.12", default-features = false, features = ["x11"] }

[profile.release]
debug = 0
strip = true
opt-level = 3
lto = "thin"
incremental = true
overflow-checks = false

[profile.dev]
opt-level = 3
incremental = true