()
| 133 | "io_stack" => "IO Stack".to_string(), |
| 134 | "networking" => "Networking".to_string(), |
| 135 | "platform" => "Platform".to_string(), |
| 136 | "project" => "Project".to_string(), |
| 137 | "render_stack" => "Render Stack".to_string(), |
| 138 | "resources" => "Resources".to_string(), |
| 139 | "runtime_project" => "Runtime Project".to_string(), |
| 140 | "script_stack" => "Script Stack".to_string(), |
| 141 | "scripting" => "Scripting".to_string(), |
| 142 | "tools" => "Tools".to_string(), |
| 143 | "ui" => "UI".to_string(), |
| 144 | "WASM" => "WASM".to_string(), |
| 145 | "book" => "Book".to_string(), |
| 146 | other => other |
| 147 | .split(['_', '-', '/']) |
| 148 | .filter(|part| !part.is_empty()) |
| 149 | .map(|part| { |
no test coverage detected