blob: f2cf0f58f258aba5e76ec3773a527ad5045d667c [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 ParseVendorManifest(file string, data []byte) ([]module.Version, error) {
var cfg struct {
Dependencies []struct {
ImportPath string
Revision string
}
}
if err := json.Unmarshal(data, &cfg); err != nil {
return nil, err
}
var list []module.Version
for _, d := range cfg.Dependencies {
list = append(list, module.Version{Path: d.ImportPath, Version: d.Revision})
}
return list, nil
}