blob: 38b0a685ad6b9e0dfccabd84306749a45b000a4d [file] [log] [blame]
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package modconv
import (
"encoding/json"
"cmd/go/internal/module"
)
func ParseVendorJSON(file string, data []byte) ([]module.Version, error) {
var cfg struct {
Package []struct {
Path string
Revision string
}
}
if err := json.Unmarshal(data, &cfg); err != nil {
return nil, err
}
var list []module.Version
for _, d := range cfg.Package {
list = append(list, module.Version{Path: d.Path, Version: d.Revision})
}
return list, nil
}