Add missing import

This commit is contained in:
Perry Thompson 2021-07-01 21:52:22 -05:00 committed by Blaž Hrastnik
parent 9f62ad0715
commit e177b27baf

View file

@ -94,6 +94,7 @@ fn load_runtime_file(language: &str, filename: &str) -> Result<String, std::io::
#[cfg(feature = "embed_runtime")] #[cfg(feature = "embed_runtime")]
fn load_runtime_file(language: &str, filename: &str) -> Result<String, Box<dyn std::error::Error>> { fn load_runtime_file(language: &str, filename: &str) -> Result<String, Box<dyn std::error::Error>> {
use std::fmt; use std::fmt;
use std::path::PathBuf;
#[derive(rust_embed::RustEmbed)] #[derive(rust_embed::RustEmbed)]
#[folder = "../runtime/"] #[folder = "../runtime/"]