1 2 3 4 5 6 7 8
/// Configuration for creating a new project #[derive(Clone, Debug)] pub(crate) struct NewProjectConfig { /// Name of the project to create pub project_name: String, /// URL of the template repository pub template_url: String, }