2020-12-17 21:45:34 +00:00
|
|
|
[package]
|
|
|
|
name = "embedded-plots"
|
2021-03-03 22:02:03 +00:00
|
|
|
version = "0.1.1"
|
2020-12-17 21:45:34 +00:00
|
|
|
authors = ["Michał Chodzikiewicz <mchodzikiewicz@gmail.com>"]
|
|
|
|
edition = "2018"
|
2021-03-03 21:20:44 +00:00
|
|
|
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}
|
2020-12-30 15:33:08 +00:00
|
|
|
heapless = "0.5.6"
|
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"
|