1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

use serde::{Deserialize};

/// An item.
///
#[derive(Deserialize, Debug)]
pub struct Item {
    pub name: String,
    pub input_item_paths: Vec<PathBuf>,
    pub output_item_paths: Vec<PathBuf>,
    pub tmp_item_paths: Option<Vec<PathBuf>>,
}