lvgl-rs/lvgl-codegen/Cargo.toml

28 lines
576 B
TOML
Raw Normal View History

2020-06-04 00:00:31 +00:00
[package]
name = "lvgl-codegen"
version = "0.1.0"
2020-06-11 20:22:36 +00:00
description = "Code generation based on LVGL source code"
2020-06-04 00:00:31 +00:00
authors = ["Rafael Caricio <rafael@caricio.com>"]
edition = "2018"
2020-06-11 20:22:36 +00:00
license = "MIT"
2020-06-04 21:09:54 +00:00
publish = false
2020-06-11 20:22:36 +00:00
build = "build.rs"
[lib]
name = "lvgl_codegen"
2020-06-04 00:00:31 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.3.9"
2020-06-11 20:22:36 +00:00
quote = "1.0.7"
lazy_static = "1.4.0"
2020-06-12 10:41:20 +00:00
clang = { path = "../../clang-rs" }
2020-06-11 20:22:36 +00:00
itertools = "0.9.0"
proc-macro2 = "1.0.18"
2020-06-12 07:16:57 +00:00
Inflector = "0.11.4"
lang-c = "0.8.1"
2020-06-11 20:22:36 +00:00
[build-dependencies]
cc = "1.0.50"