Lines Matching +full:minimal +full:- +full:versions

3 <div align="center">Minimal Lightweight Text Templating</div>
23 - [Table of Contents](#table-of-contents)
24 - [Goals](#goals)
25 - [Why TinyTemplate?](#why-tinytemplate)
26 - [Quickstart](#quickstart)
27 - [Compatibility Policy](#compatibility-policy)
28 - [Contributing](#contributing)
29 - [Maintenance](#maintenance)
30 - [License](#license)
36- __Small__: TinyTemplate deliberately does not support many features of more powerful template en…
37 - __Simple__: TinyTemplate presents a minimal but well-documented user-facing API.
38 - __Lightweight__: TinyTemplate has minimal required dependencies.
40 Non-goals include:
42 - __Extensibility__: TinyTemplate supports custom value formatters, but that is all.
43 - __Performance__: TinyTemplate provides decent performance, but other template engines are faster.
50 performance that I didn't need. Some had elaborate macro-based DSL's to generate HTML, where I just
53 minimal with good documentation but there was nothing like that out there so I wrote my own.
55 TinyTemplate is well-suited to generating HTML reports and similar text files. It could be used for
56 generating HTML or other text in a web-server, but for more-complex use cases another template
61 First, add TinyTemplate and serde-derive to your `Cargo.toml` file:
84 pub fn main() -> Result<(), Box<dyn Error>> {
104 Rust 1.38 or later. Older versions may work, but are not tested or guaranteed.
106 Currently, the oldest version of Rust believed to work is 1.36. Future versions of TinyTemplate may
107 break support for such old versions, and this will not be considered a breaking change. If you
108 require TinyTemplate to work on old versions of Rust, you will need to stick to a
116 In particular, becuase TinyTemplate aims to be well-documented, please report anything you find
130 TinyTemplate is dual-licensed under the Apache 2.0 license and the MIT license.