forked from nickel-org/rust-mustache
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Use a generic method for handling partials
This fixes a few issues: - nickel-org#67 - nickel-org#62 (by implementing a custom PartialLoader without the set_extension) But it also adds a lot of complexity and breaks previous code.
- Loading branch information
Showing
7 changed files
with
147 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,10 @@ name = "mustache" | |
description = "Rust implementation of Mustache" | ||
repository = "https://github.com/nickel-org/rust-mustache" | ||
documentation = "http://nickel-org.github.io/rust-mustache" | ||
version = "0.9.0" | ||
authors = ["[email protected]"] | ||
version = "0.10.0" | ||
authors = ["[email protected]", "Shad Amethyst <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
autotests = false | ||
|
||
[features] | ||
unstable = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.