Nerijus Arlauskas

Results 9 issues of Nerijus Arlauskas

https://github.com/rust-lang-nursery/failure/pull/347

outdated-tutorial

Basic TODO list. - [x] Replace current DI mechanism with much simpler Ownership-based dependency injection: [Proof of concept here](http://is.gd/OQqHz9): ``` rust use std::any::{ Any, TypeId }; use std::collections::HashMap; use std::collections::hash_map::Entry;...

enhancement
help wanted

The aim is to write all the [Twig test suite](https://github.com/twigphp/Twig/tree/1.x/test/Twig/Tests) in Rust. - [x] Lexer Tests - [x] Test fixture runner, so we can run [these](https://github.com/twigphp/Twig/blob/1.x/test/Twig/Tests/Fixtures/filters/batch_with_keys.test) (issue #2) - [...

Decide how to implement extensible AST in Rust (with inheritance?). At the very minimum, it should be possible to register twig extensions that can process [this](https://github.com/Nercury/twig-rs/blob/master/templates/fos_login.html.twig) example. Initial work: -...