font rendering
This commit is contained in:
+14
-1
@@ -36,7 +36,7 @@ libc = "0.2"
|
||||
bitflags = "2"
|
||||
|
||||
# Font rasterization and shaping
|
||||
fontdue = "0.9"
|
||||
ab_glyph = "0.2"
|
||||
rustybuzz = "0.20"
|
||||
ttf-parser = "0.25"
|
||||
fontconfig = "0.10"
|
||||
@@ -47,9 +47,22 @@ serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
bincode = "1"
|
||||
dirs = "6"
|
||||
notify = "7"
|
||||
|
||||
# Shared memory for fast IPC
|
||||
memmap2 = "0.9"
|
||||
|
||||
# Fast byte searching
|
||||
memchr = "2"
|
||||
|
||||
# Image processing (Kitty graphics protocol)
|
||||
image = { version = "0.25", default-features = false, features = ["png", "gif"] }
|
||||
flate2 = "1"
|
||||
|
||||
# Video decoding for WebM support (video only, no audio)
|
||||
# Requires system FFmpeg libraries (ffmpeg 5.x - 8.x supported)
|
||||
ffmpeg-next = { version = "8.0", optional = true }
|
||||
|
||||
[features]
|
||||
default = ["webm"]
|
||||
webm = ["ffmpeg-next"]
|
||||
|
||||
Reference in New Issue
Block a user