embedded-plots/Cargo.toml

24 lines
804 B
TOML
Raw Normal View History

2020-12-17 21:45:34 +00:00
[package]
name = "embedded-plots"
2022-06-27 09:11:43 +00:00
version = "0.1.2"
2020-12-17 21:45:34 +00:00
authors = ["Michał Chodzikiewicz <mchodzikiewicz@gmail.com>"]
edition = "2018"
license = "LGPL-2.1-only"
2021-03-02 23:40:27 +00:00
description = "Heapless plotting library for embedded targets based on embedded-graphics crate"
homepage = "https://gitlab.com/mchodzikiewicz/embedded-plots"
repository = "https://gitlab.com/mchodzikiewicz/embedded-plots"
readme = "README.md"
keywords = ["embedded", "plot", "graphics"]
2021-03-04 16:54:57 +00:00
categories = ["embedded","visualization","no-std","graphics"]
2020-12-17 21:45:34 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-12-17 23:23:15 +00:00
embedded-graphics = "0.6.0"
2022-06-19 16:52:54 +00:00
itertools = {version = "0.9.0", default-features = false}
2021-07-23 11:37:54 +00:00
heapless = "0.7.3"
2020-12-17 21:45:34 +00:00
2020-12-17 23:23:15 +00:00
[dev-dependencies]
embedded-graphics-simulator = "0.2.1"
2020-12-18 17:01:19 +00:00
test-case = "1.0.0"