| 380 | } |
| 381 | |
| 382 | interface RustVersion { |
| 383 | host: string; |
| 384 | release: string; |
| 385 | "commit-hash": string; |
| 386 | } |
| 387 | |
| 388 | async function getRustVersions(cmdFormat: string): Promise<Set<RustVersion>> { |
| 389 | const versions = new Set<RustVersion>(); |
nothing calls this directly
no outgoing calls
no test coverage detected