Rafael Carício
893f0054c8
* New API test using std/alloc objects * Use RefCell to create multiple mut refs * UI saves display obj, makes possible for global call to active display * Reflect restrictions of LvGL * No need for manual nul byte * Fix typo
19 lines
816 B
TOML
19 lines
816 B
TOML
[package]
|
|
name = "lvgl"
|
|
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)."
|
|
version = "0.1.1"
|
|
authors = ["Rafael Caricio <crates.lvgl@caric.io>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/rafaelcaricio/lvgl-rs"
|
|
license = "MIT"
|
|
readme = "../README.md"
|
|
categories = ["api-bindings", "embedded", "gui", "no-std"]
|
|
keywords = ["littlevgl", "lvgl", "graphical_interfaces"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lvgl-sys = {path="../lvgl-sys", version="0.1"}
|
|
cty = "0.2"
|
|
embedded-graphics = "0.6"
|
|
cstr_core = { version = "0.2", default-features = false, features = ["alloc"] }
|