Skip to content

Commit

Permalink
feat: Expose filters/tags
Browse files Browse the repository at this point in the history
This is needed if clients want to pick and choose what parts of liquid
they include.

Part of #181
  • Loading branch information
epage committed Jul 30, 2018
1 parent a9c61be commit 027a67c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ extern crate serde;
extern crate serde_yaml;

mod error;
mod filters;
mod parser;
mod tags;
mod template;
mod value;

pub mod compiler;
pub mod filters;
pub mod interpreter;
pub mod tags;

pub use error::Error;
pub use parser::{Parser, ParserBuilder};
Expand Down

0 comments on commit 027a67c

Please sign in to comment.