font-awesome 0.2.0

A typed manifest of constants of Font Awesome unicode code points
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![no_std]
#![doc = include_str!("../README.md")]

/// All const char points.
pub mod chars;
/// All consts char points re-exported as
/// single character string literals.
pub mod strs;

pub use chars::*;

pub const MINIMUM_CODEPOINT: usize = 0xe005;
pub const MAXIMUM_CODEPOINT: usize = 0xf8ff;