2020-04-10 17:12:10 +00:00
[ package ]
name = "lvgl"
2020-04-12 11:57:17 +00:00
description = "LittlevGL bindings for Rust. A powerful and easy-to-use embedded GUI with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash)."
2020-06-14 12:49:02 +00:00
version = "0.3.1"
2020-04-10 17:12:10 +00:00
authors = [ "Rafael Caricio <crates.lvgl@caric.io>" ]
edition = "2018"
2020-04-11 18:35:33 +00:00
repository = "https://github.com/rafaelcaricio/lvgl-rs"
2020-04-10 17:12:10 +00:00
license = "MIT"
2020-04-12 10:19:28 +00:00
readme = "../README.md"
categories = [ "api-bindings" , "embedded" , "gui" , "no-std" ]
keywords = [ "littlevgl" , "lvgl" , "graphical_interfaces" ]
2020-06-14 09:25:22 +00:00
build = "build.rs"
2020-04-10 17:12:10 +00:00
[ dependencies ]
2020-06-14 12:49:02 +00:00
lvgl-sys = { version = "0.3.1" , path = "../lvgl-sys" }
2020-05-30 07:32:27 +00:00
cty = "0.2.1"
embedded-graphics = "0.6.2"
cstr_core = { version = "0.2.0" , default-features = false , features = [ "alloc" ] }
2020-06-01 20:45:33 +00:00
bitflags = "1.2.1"
2020-06-12 10:41:20 +00:00
2020-06-14 08:02:32 +00:00
[ build-dependencies ]
quote = "1.0.7"
proc-macro2 = "1.0.18"
2020-06-14 08:51:18 +00:00
lvgl-codegen = { version = "0.3.0" , path = "../lvgl-codegen" }
2020-06-14 12:49:02 +00:00
lvgl-sys = { version = "0.3.1" , path = "../lvgl-sys" }
2020-06-14 08:02:32 +00:00