-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (35 loc) · 1019 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "u8g2-fonts"
version = "0.4.0"
edition = "2021"
rust-version = "1.62"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/Finomnis/u8g2-fonts"
description = "A text renderer for embedded-graphics, based on U8g2."
keywords = ["no-std", "embedded"]
categories = ["no-std", "embedded"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
exclude = [
"/.gitignore",
"/.gitmodules",
"/.github/",
"/regenerate_fonts_file.sh",
"/u8g2/",
"/TODO.txt",
"/UPCOMING_VERSION_CHANGES.txt",
]
[features]
# Enables std::error::Error impls
std = []
# Enables U8g2TextStyle for the embedded_graphics font interface
embedded_graphics_textstyle = ["dep:embedded-graphics"]
[dependencies]
embedded-graphics-core = "0.4.0"
embedded-graphics = { version = "0.8.0", optional = true }
[dev-dependencies]
image = "0.25.2"
base64 = "0.22.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]