(path string)
| 98 | } |
| 99 | |
| 100 | func downloadLib(path string) { |
| 101 | log := logger.Logger() |
| 102 | log.Info().Msg("Downloading rust libs ...") |
| 103 | err := downloadFile("https://github.com/PolyhedraZK/ExpanderCompilerCollection/raw/rust-built-libs/"+getLibName(), path) |
| 104 | if err != nil { |
| 105 | os.Remove(path) |
| 106 | panic(err) |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | type repoInfo struct { |
| 111 | Commit struct { |
no test coverage detected