beam-worker 0.11.1

Per-session worker process for beam that owns terminal backends and CLI adapters
Documentation
1
2
3
4
5
6
7
8
9
//! Embedded monospace font so screenshot rendering is deterministic on
//! machines without fontconfig fonts (CI runners, minimal servers).
//! DejaVu Sans Mono is redistributable under the Bitstream Vera license.

use super::FontVec;

pub(crate) fn embedded_mono_font() -> Option<FontVec> {
    FontVec::try_from_vec(include_bytes!("../../assets/DejaVuSansMono.ttf").to_vec()).ok()
}