Files
zterm/Cargo.toml
T
2025-12-15 12:20:37 +01:00

54 lines
845 B
TOML

[package]
name = "zterm"
version = "0.1.0"
edition = "2024"
[lib]
name = "zterm"
path = "src/lib.rs"
[[bin]]
name = "zterm"
path = "src/main.rs"
[dependencies]
# Window and rendering
winit = { version = "0.30", features = ["wayland", "x11"] }
wgpu = "23"
pollster = "0.4"
# PTY handling
rustix = { version = "0.38", features = ["termios", "pty", "process", "fs"] }
# Async I/O
polling = "3"
# Error handling
thiserror = "2"
# Logging
log = "0.4"
env_logger = "0.11"
# Utilities
bytemuck = { version = "1", features = ["derive"] }
libc = "0.2"
bitflags = "2"
# Font rasterization and shaping
fontdue = "0.9"
rustybuzz = "0.20"
ttf-parser = "0.25"
# Configuration
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1"
dirs = "6"
# Shared memory for fast IPC
memmap2 = "0.9"
# Fast byte searching
memchr = "2"