Dependencies

Start by adding the imports you are going to need.

#![allow(unused)]
fn main() {
use anyhow::bail;
use essential_types::{
    solution::{Mutation, Solution, SolutionData},
    Value, Word,
};
}