useserde::{Deserialize, Serialize};usestd::path::PathBuf;/// Configuration for a target project
#[derive(Debug, Clone, Serialize, Deserialize)]/// Configuration for a target project
////// This struct represents configuration for a specific target project that Pawan
/// can work with. It includes the project path and description.
pubstructTargetConfig{/// Path to the project root
pubpath: PathBuf,
/// Description of the project
pubdescription: String,
}