-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
29 lines (23 loc) · 835 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 = "embedded-vintage-fonts"
description = "Vintage fonts from embedded-graphics 0.6 back release 0.7"
version = "0.2.0"
edition = "2021"
authors = ["Christian Meusel <[email protected]>"]
license = "MIT OR Apache-2.0"
categories = ["rendering", "embedded", "no-std"]
keywords = ["bitmap", "monochrome", "font", "monospace"]
documentation = "https://docs.rs/embedded-vintage-fonts"
repository = "https://github.com/sirhcel/embedded-vintage-fonts"
readme = "README.md"
exclude = [
"/.github/",
".gitignore",
]
[dependencies]
embedded-graphics = "0.8.0"
[dev-dependencies]
# Automatically depend on command line parser and desktop simulator for
# embedded graphics when building and running tests and examples.
clap = { version = "4.3.0", features = ["derive"] }
embedded-graphics-simulator = "0.5.0"