github.com/golang/dep@v0.5.4/gps/verify/lock.go (about)

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package verify
     6  
     7  import (
     8  	"github.com/golang/dep/gps"
     9  )
    10  
    11  // VerifiableProject composes a LockedProject to indicate what the hash digest
    12  // of a file tree for that LockedProject should be, given the PruneOptions and
    13  // the list of packages.
    14  type VerifiableProject struct {
    15  	gps.LockedProject
    16  	PruneOpts gps.PruneOptions
    17  	Digest    VersionedDigest
    18  }