Text file src/cmd/go.mod

     1  module cmd
     2  
     3  go 1.18
     4  
     5  require (
     6  	github.com/google/pprof v0.0.0-20211104044539-f987b9c94b31
     7  	golang.org/x/arch v0.0.0-20210923205945-b76863e36670
     8  	golang.org/x/mod v0.6.0-dev.0.20211102181907-3a5865c02020
     9  	golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
    10  	golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
    11  	golang.org/x/tools v0.1.9-0.20220329150752-294080fd2f5a
    12  )
    13  
    14  require (
    15  	github.com/ianlancetaylor/demangle v0.0.0-20210905161508-09a460cdf81d // indirect
    16  	golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
    17  	golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect
    18  	golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
    19  )
    20  

View as plain text