[package]
edition = "2021"
name = "microsoft-fast-build"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Server-side renderer for FAST declarative HTML templates — resolves bindings, evaluates conditionals, iterates repeats, and expands custom elements into Declarative Shadow DOM."
homepage = "https://www.fast.design/"
readme = "README.md"
keywords = [
"fast",
"ssr",
"html",
"template",
"web-components",
]
categories = [
"template-engine",
"web-programming",
]
license = "MIT"
repository = "https://github.com/microsoft/fast"
[lib]
name = "microsoft_fast_build"
path = "src/lib.rs"
[[test]]
name = "bindings"
path = "tests/bindings.rs"
[[test]]
name = "custom_elements"
path = "tests/custom_elements.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "f_repeat"
path = "tests/f_repeat.rs"
[[test]]
name = "f_when"
path = "tests/f_when.rs"
[[test]]
name = "nested_directives"
path = "tests/nested_directives.rs"
[[test]]
name = "single_brace"
path = "tests/single_brace.rs"