liquid 0.1.0

The liquid templating language for Rust
liquid-rust [![](https://travis-ci.org/cobalt-org/liquid-rust.svg?branch=master)](https://travis-ci.org/cobalt-org/liquid-rust) [![](https://img.shields.io/crates/v/liquid.svg)](https://crates.io/crates/liquid)
===========

Liquid templating for Rust

Usage
----------

To include liquid in your project add the following to your Cargo.toml:

```toml
[dependencies.liquid]

git = "https://github.com/cobalt-org/liquid-rust.git"

```

Now you can use the crate in your code
```rust
extern crate liquid;
```