liquid-rust
                                
                                 liquid-rust copied to clipboard
                                
                                    liquid-rust copied to clipboard
                            
                            
                            
                        Liquid templating for Rust
[](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | Pending | |---|---|---|---| | [rust](https://togithub.com/rust-lang/rust) | minor | `1.74` -> `1.76` | `1.79` (+2) |...
Fixes https://github.com/cobalt-org/liquid-rust/issues/543 ```rust let parser = liquid::ParserBuilder::with_stdlib().build().unwrap(); let tpl = parser.parse("{{['other']}}").unwrap(); let globals = liquid::object!({ "my": {"variable": "value"}, "other": "other_value" }); let res = tpl.render(&globals).unwrap(); // "other_value" ``` Currently the...
Hello! Thank you for making this implementation of liquid for Rust, we've been using it at Meilisearch to let our users tell us [how we should turn their JSON documents...
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR...
Noticed that these filters are missing from this library (resulted in breakage during use, and then didn't see any references to them in this repo).
liquid-rust version: 0.26.9 rust version: rustc 1.82.0 OS: Windows If i pass in an empty object but the template tries to read the variable, it will crash. Reproduction of my...
Internally, DateTime is represented as ```rust pub struct DateTime { inner: DateTimeImpl, } ``` where ```rust type DateTimeImpl = time::OffsetDateTime; ``` My implementation supports broader time parsing than liquid-rust, so...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [serde_yaml](https://redirect.github.com/dtolnay/serde-yaml) | dev-dependencies | minor | `0.8.26` -> `0.9.0` | | [serde_yaml](https://redirect.github.com/dtolnay/serde-yaml) |...
liquid-rust version: 0.26.9 rust version: rustc 1.82.0 (f6e511eec 2024-10-15) OS: Debian 12 (bookworm) I believe I have found a bug: `liquid-rust` seems to equate `false` and `nil`. My reasons for...