ttf-inter 0.1.0

Inter font as cargo crate for direct use from code
Documentation
// Copyright (c) 2016-2020 The Inter Project Authors
// https://github.com/rsms/inter

// This Font Software is licensed under the SIL Open Font License, Version 1.1.
// This license is copied below, and is also available with a FAQ at:
// http://scripts.sil.org/OFL

#[cfg(feature = "black")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Black.otf");

#[cfg(feature = "blackitalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-BlackItalic.otf");

#[cfg(feature = "bold")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Bold.otf");

#[cfg(feature = "bolditalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-BoldItalic.otf");

#[cfg(feature = "extrabold")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraBold.otf");

#[cfg(feature = "extrabolditalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraBoldItalic.otf");

#[cfg(feature = "extralight")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraLight.otf");

#[cfg(feature = "extralightitalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ExtraLightItalic.otf");

#[cfg(feature = "italic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Italic.otf");

#[cfg(feature = "light")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Light.otf");

#[cfg(feature = "lightitalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-LightItalic.otf");

#[cfg(feature = "medium")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Medium.otf");

#[cfg(feature = "mediumitalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-MediumItalic.otf");

#[cfg(feature = "regular")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Regular.otf");

#[cfg(feature = "semibold")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-SemiBold.otf");

#[cfg(feature = "semibolditalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-SemiBoldItalic.otf");

#[cfg(feature = "thin")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-Thin.otf");

#[cfg(feature = "thinitalic")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-ThinItalic.otf");

#[cfg(feature = "v")]
pub const REGULAR: &'static [u8] = include_bytes!("../ttf/Inter-V.otf");