-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (26 loc) · 932 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "font8x8"
version = "0.2.7"
authors = [
"Joaquin Rosales <casabenita7@gmail.com>",
"Philipp Oppermann <dev@phil-opp.com>",
"Jonathan Pallant <github@thejpster.org.uk>"
]
description = "8x8 monochrome bitmap font for rendering."
homepage = "https://github.com/saibatizoku/font8x8-rs"
repository = "https://github.com/saibatizoku/font8x8-rs"
readme = "README.md"
keywords = ["font", "8bit", "8-bit", "bitmap", "monochrome"]
categories = ["no-std", "rendering"]
license = "MIT"
[dependencies]
# To disable all features, run `cargo build` with the `--no-default-features` option.
# Doing This only includes the constants.
[features]
default = ["unicode", "std"]
# adds strong-typed unicode encoding and decoding, as well
# as Default, Debug, Display, Clone, implementations.
unicode = []
# Disabling this feature removes the dependency on the standard library
# and makes the library no_std compatible.
std = []