ran clippy
This commit is contained in:
parent
d2cdc427a3
commit
fb18c0f340
2 changed files with 6 additions and 6 deletions
10
src/main.rs
10
src/main.rs
|
@ -13,8 +13,8 @@ use std::{
|
||||||
};
|
};
|
||||||
use tera::{Context, Error as TeraError, Tera};
|
use tera::{Context, Error as TeraError, Tera};
|
||||||
|
|
||||||
const DEFAULT_TEMPLATE_DIR: &'static str = "templates";
|
const DEFAULT_TEMPLATE_DIR: &str = "templates";
|
||||||
const DEFAULT_OUTPUT_DIR: &'static str = "output";
|
const DEFAULT_OUTPUT_DIR: &str = "output";
|
||||||
|
|
||||||
fn main() -> Result<(), Box<dyn Error>> {
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
process::exit(match run() {
|
process::exit(match run() {
|
||||||
|
@ -43,7 +43,7 @@ fn run() -> Result<(), Box<dyn Error>> {
|
||||||
let outputs: Vec<String> = matches
|
let outputs: Vec<String> = matches
|
||||||
.values_of("output-format")
|
.values_of("output-format")
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
.map(|e| String::from(e))
|
.map(String::from)
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
if matches.is_present("watch") {
|
if matches.is_present("watch") {
|
||||||
|
@ -76,7 +76,7 @@ fn watch_mode<'a>(
|
||||||
engine: &mut Tera,
|
engine: &mut Tera,
|
||||||
context: &mut Context,
|
context: &mut Context,
|
||||||
dir: &str,
|
dir: &str,
|
||||||
outputs: &Vec<String>,
|
outputs: &[String],
|
||||||
template_dir: &'a str,
|
template_dir: &'a str,
|
||||||
) -> Result<(), Box<dyn Error>> {
|
) -> Result<(), Box<dyn Error>> {
|
||||||
let (tx, rx) = unbounded();
|
let (tx, rx) = unbounded();
|
||||||
|
@ -101,7 +101,7 @@ fn output<'a>(
|
||||||
engine: &Tera,
|
engine: &Tera,
|
||||||
context: &Context,
|
context: &Context,
|
||||||
dir: &str,
|
dir: &str,
|
||||||
outputs: &Vec<String>,
|
outputs: &[String],
|
||||||
template_dir: &'a str,
|
template_dir: &'a str,
|
||||||
) -> Result<(), Box<dyn Error>> {
|
) -> Result<(), Box<dyn Error>> {
|
||||||
if outputs.contains(&String::from("all")) {
|
if outputs.contains(&String::from("all")) {
|
||||||
|
|
Loading…
Reference in a new issue