minify-html/nodejs/native/Cargo.toml

23 lines
400 B
TOML
Raw Normal View History

2019-12-30 02:16:33 -05:00
[package]
2019-12-30 03:20:33 -05:00
publish = false
name = "minify-html-ffi"
2021-08-07 23:01:44 -04:00
version = "0.6.0"
2019-12-30 02:16:33 -05:00
authors = ["Wilson Lin <code@wilsonl.in>"]
license = "MIT"
edition = "2018"
[lib]
name = "minify_html_ffi"
crate-type = ["staticlib"]
2019-12-30 02:16:33 -05:00
2021-04-05 23:43:55 -04:00
[features]
core = ["minify-html"]
js = ["minify-html/js-esbuild"]
2019-12-30 02:16:33 -05:00
[build-dependencies]
cbindgen = "0.14"
2019-12-30 02:16:33 -05:00
[dependencies]
libc = "0.2"
2021-08-08 03:40:42 -04:00
minify-html = { path = "../../rust/main", optional = true }