[workspace] members = [ ".", "alpine-css", "alpine-html", "alpine-markup", "alpine-svg", ] [package] name = "alpine" version = "0.1.0" edition = "2021" authors = ["Liam Curry "] description = "A simple HTML template engine" keywords = ["html", "template", "render"] repository = "https://gitlab.com/liamcurry/alpine" categories = ["gui", "template-engine", "web-programming"] license = "MIT OR Apache-2.0" [dependencies] alpine-css = { workspace = true, optional = true } alpine-html = { workspace = true, optional = true } alpine-svg = { workspace = true, optional = true } alpine-markup.workspace = true [features] default = ["css", "html", "svg"] css = ["alpine-css"] html = ["alpine-html"] svg = ["alpine-svg"] [dev-dependencies] anyhow = "1.0.75" [workspace.dependencies] # Local dependencies alpine-css = { version = "0.1", path = "alpine-css" } alpine-html = { version = "0.1", path = "alpine-html" } alpine-svg = { version = "0.1", path = "alpine-svg" } alpine-markup = { version = "0.1", path = "alpine-markup" }