modinfo

package standard library
go1.25.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 13, 2025 License: BSD-3-Clause Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ModuleError

type ModuleError struct { Err string // error text }

func (*ModuleError) UnmarshalJSON added in go1.19

func (e *ModuleError) UnmarshalJSON(data []byte) error

UnmarshalJSON accepts both {"Err":"text"} and "text", so that the output of go mod download -json can still be unmarshaled into a ModulePublic during -reuse processing.

type ModulePublic

type ModulePublic struct { Path string `json:",omitempty"` // module path Version string `json:",omitempty"` // module version Query string `json:",omitempty"` // version query corresponding to this version Versions []string `json:",omitempty"` // available module versions Replace *ModulePublic `json:",omitempty"` // replaced by this module Time *time.Time `json:",omitempty"` // time version was created Update *ModulePublic `json:",omitempty"` // available update (with -u) Main bool `json:",omitempty"` // is this the main module? Indirect bool `json:",omitempty"` // module is only indirectly needed by main module Dir string `json:",omitempty"` // directory holding local copy of files, if any GoMod string `json:",omitempty"` // path to go.mod file describing module, if any GoVersion string `json:",omitempty"` // go version used in module Retracted []string `json:",omitempty"` // retraction information, if any (with -retracted or -u) Deprecated string `json:",omitempty"` // deprecation message, if any (with -u) Error *ModuleError `json:",omitempty"` // error loading module Sum string `json:",omitempty"` // checksum for path, version (as in go.sum) GoModSum string `json:",omitempty"` // checksum for go.mod (as in go.sum) Origin *codehost.Origin `json:",omitempty"` // provenance of module Reuse bool `json:",omitempty"` // reuse of old module info is safe }

func (*ModulePublic) String

func (m *ModulePublic) String() string