Skip to main content

aetna_fonts_roboto/
lib.rs

1//! Roboto bundled for Aetna.
2//!
3//! Each weight exposes a `pub static FOO: &[u8]` constant that
4//! `aetna-fonts` re-exports when the `roboto` feature is enabled.
5//! Most consumers should depend on `aetna-fonts` (with the default
6//! features) rather than this crate directly.
7
8#![no_std]
9
10pub static ROBOTO_REGULAR: &[u8] = include_bytes!("../fonts/Roboto-Regular.ttf");
11pub static ROBOTO_MEDIUM: &[u8] = include_bytes!("../fonts/Roboto-Medium.ttf");
12pub static ROBOTO_BOLD: &[u8] = include_bytes!("../fonts/Roboto-Bold.ttf");
13pub static ROBOTO_ITALIC: &[u8] = include_bytes!("../fonts/Roboto-Italic.ttf");