in plugin-rust-agent/src/main/kotlin/jetbrains/buildServer/rust/CargoBuildServices.kt [14:21]
override fun makeProgramCommandLine(): ProgramCommandLine {
val (toolPath, toolArgs) = getToolPath()
val installCommand = if (version != null)
listOf("install", "--locked", "--version", version, crate)
else
listOf("install", "--locked", crate)
return createProgramCommandline(toolPath, toolArgs + installCommand)
}