-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 854 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 854 Bytes
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
[package]
name = "tinytga"
version = "0.5.0"
description = "No-std, low memory footprint TGA image loader"
authors = ["James Waples <james@wapl.es>", "Ralf Fuest <mail@rfuest.de>"]
edition = "2021"
repository = "https://github.com/embedded-graphics/tinytga"
documentation = "https://docs.rs/tinytga"
categories = ["embedded", "no-std", "multimedia::images"]
keywords = ["graphics", "embedded-graphics", "tga", "targa", "image"]
readme = "./README.md"
license = "MIT OR Apache-2.0"
exclude = [
"/.github/",
".gitignore",
]
[[bench]]
name = "draw"
harness = false
[dependencies]
embedded-graphics = "0.8.0"
nom = { version = "7.1.1", default-features = false }
[dev-dependencies]
paste = "1.0"
criterion = "0.3.5"
clap = { version = "3.2.22", features = ["derive"] }
embedded-graphics-simulator = { version = "0.5.0", default-features = false }