deft-font-kit 0.15.0

A cross-platform font loading library
Documentation
// font-kit/src/loaders/mod.rs
//
// Copyright © 2018 The Pathfinder Project Developers.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! The different system services that can load and rasterize fonts.

#[cfg(target_os = "windows")]
pub mod directwrite;
#[cfg(target_os = "windows")]
pub use crate::loaders::directwrite as default;

#[cfg(not(target_os = "windows"))]
pub mod freetype;
#[cfg(not(target_os = "windows"))]
pub use crate::loaders::freetype as default;