Archived
20 lines
334 B
TOML
20 lines
334 B
TOML
[package]
|
|
name = "el-ui-compiler"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "el-ui component compiler — transforms .el component files into JavaScript"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "el-ui-compiler"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "el_ui_compiler"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
thiserror = "1"
|
|
|
|
[dev-dependencies]
|