Initial commit: VT220 emulator with multi-window support

This commit is contained in:
root
2026-05-18 07:20:04 +00:00
commit 88daf1a5b6
7 changed files with 4162 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "vt220-emulator"
version = "0.1.0"
edition = "2024"
[dependencies]
alacritty_terminal = "0.26.0"
copypasta = "0.10.2"
env_logger = "0.11.10"
glyphon = "0.11.0"
log = "0.4.29"
pollster = "0.4.0"
wgpu = "29.0.3"
winit = "0.30.13"
bytemuck = "1.21"
unicode-width = "0.2"