[package]
edition = "2021"
name = "mini-build"
version = "0.1.0"
authors = ["makeitmini"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Builds the directory a static server serves: CSS/JS bundling and minification via external tools, plus asset mirroring."
homepage = "https://gitlab.com/makeitmini/build"
documentation = "https://docs.rs/mini-build"
readme = "README.md"
license = "MIT"
repository = "https://gitlab.com/makeitmini/build"
[lib]
name = "mini_build"
path = "src/lib.rs"
[[test]]
name = "equivalence"
path = "tests/equivalence.rs"
[[test]]
name = "real_tools"
path = "tests/real_tools.rs"
[[bench]]
name = "build"
path = "benches/build.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
default-features = false
[dev-dependencies.mini-static]
version = "=0.28.10"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"time",
]