Forgot to add phf as a dependency.

Clean up unused imports.
This commit is contained in:
2020-08-03 14:55:04 +02:00
parent 9ab770249a
commit a650454fa7
2 changed files with 3 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ build = "build.rs"
[dependencies]
isolang = "1.0"
phf = "0.8"
[build-dependencies]
isolang = "1.0"

View File

@@ -1,8 +1,7 @@
use std::collections::HashMap;
use std::env;
use std::error::Error;
use std::fs::{self, File};
use std::io::{self, BufRead, BufReader, BufWriter, Write};
use std::fs::File;
use std::io::{BufRead, BufReader, BufWriter, Write};
use std::path::Path;
fn title(s: &str) -> String {