XyLyXyRR

Results 7 issues of XyLyXyRR

## Environment * **Rust toolchain version:** rustc 1.52.1 (9bc8c42bb 2021-05-09) * **IDE name and version:** intellij-idea-community-edition 4:2021.1.1-1 * **Operating system:** arch linux ## Problem description Cargo alias doesn't work on...

enhancement

Hi, there. ```rust use serde::Deserialize; use std::{fs, io::ErrorKind}; fn main() { #[derive(Deserialize)] struct One { _one: Option, _two: Option, } if let Err(e) = fs::read_to_string("jqoifnjiosdj") { match e.kind() { ErrorKind::NotFound...

Hi there, ahh, I've got an error, and I'm trying print it, but it didn't print the details. `main.rs` ```rust use std::{collections::HashMap, error::Error}; use tera::{Context, Tera}; fn main() { let...

Hi, there. ```rust use std::error::Error; use tera::{Context, Tera}; type Result = std::result::Result; fn main() -> Result { let context = { let mut context = Context::new(); context.insert("name", ""); context.insert("desc", "");...

Hi there, I'm trying use macros in my templates. `index.tpl` ```jinja {% import "another.tpl" as list %} {{ list::main() }} ``` `another.tpl` ```jinja {% macro main() %} some content {%...