embedded-plots/Cargo.toml

24 lines
746 B
TOML
Raw Normal View History

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"
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"]
categories = ["embedded","visualization"]
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"
2020-12-20 11:11:06 +00:00
itertools = "0.9.0"
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"