26 lines
553 B
TOML
26 lines
553 B
TOML
[package]
|
|
name = "lvgl-codegen"
|
|
version = "0.1.0"
|
|
description = "Code generation based on LVGL source code"
|
|
authors = ["Rafael Caricio <rafael@caricio.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
publish = false
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "lvgl_codegen"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
regex = "1.3.9"
|
|
quote = "1.0.7"
|
|
lazy_static = "1.4.0"
|
|
clang = { path = "../../clang-rs" }
|
|
itertools = "0.9.0"
|
|
proc-macro2 = "1.0.18"
|
|
syn = "1.0.31"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.50"
|