1 use serde::Deserialize; 2 3 #[derive(Debug, Clone, Deserialize)] 4 pub struct DragonStubConfig { 5 /// The path to the source code of the DragonStub project. 6 #[serde(rename = "src-path")] 7 pub src_path: String, 8 } 9