为什么 go.mod 中的所有依赖都是间接的?
Why are all dependency in go.mod indirect?
我通过运行ning初始化一个go项目:
go mod init firstgo_app
我确认模块已创建:
cat go.mod
module firstgo_app
go 1.18
然后我通过执行
安装了对 github.com/gin-gonic/gin 的依赖
get github.com/gin-gonic/gin
之后我查看了go.mod
的内容,这次是这样的:
cat go.mod
module firstgo_app
go 1.18
require (
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/gin-gonic/gin v1.7.7 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200116001909-b77594299b42 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
我没有得到的是所有依赖项都被标记为 indirect 的事实。我的理解是只有传递依赖被标记为 indirect 但我直接依赖的依赖不应该被标记为这样。也就是说 github.com/gin-gonic/gin v1.7.7 // indirect
不应该有 indirect 标签,因为这是我专门下载的依赖项。
我认为是这种情况,因为我没有直接使用依赖项,所以我再次重新创建了模块,但也创建了一个 main.go
文件,我在其中明确依赖 gonic/gin
:
cat main.go
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
当我尝试构建它失败时:
go build
main.go:2:8: no required module provides package github.com/gin-gonic/gin; to add it:
go get github.com/gin-gonic/gin
但是当我 运行 go get github.com/gin-gonic/gin
然后构建时, go.mod
中的所有依赖项仍然标记为间接。
那么是什么原因呢?我在这里错过了什么?还是我理解错了 indirect?
您的理解是正确的。 indirect
注释表示依赖项不被您的模块直接使用,仅被其他模块依赖项间接使用。
当你第一次运行go get github.com/gin-gonic/gin
时,模块会被下载,但由于你不使用它,它仍然会被标记为indirect
。
当您开始使用它时,它将不再是 indirect
,但是 go build
不会自动更新 go mod
。
运行go mod tidy
,以后就不标indirect
了
$ go mod tidy
$ cat go.mod
module firstgo_app
go 1.18
require github.com/gin-gonic/gin v1.7.7
require (
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200116001909-b77594299b42 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
自从 Go 1.14:
go commands other than go mod tidy
no longer edit the go.mod
file if the changes are only cosmetic.
我通过运行ning初始化一个go项目:
go mod init firstgo_app
我确认模块已创建:
cat go.mod
module firstgo_app
go 1.18
然后我通过执行
安装了对 github.com/gin-gonic/gin 的依赖get github.com/gin-gonic/gin
之后我查看了go.mod
的内容,这次是这样的:
cat go.mod
module firstgo_app
go 1.18
require (
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/gin-gonic/gin v1.7.7 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200116001909-b77594299b42 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
我没有得到的是所有依赖项都被标记为 indirect 的事实。我的理解是只有传递依赖被标记为 indirect 但我直接依赖的依赖不应该被标记为这样。也就是说 github.com/gin-gonic/gin v1.7.7 // indirect
不应该有 indirect 标签,因为这是我专门下载的依赖项。
我认为是这种情况,因为我没有直接使用依赖项,所以我再次重新创建了模块,但也创建了一个 main.go
文件,我在其中明确依赖 gonic/gin
:
cat main.go
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
当我尝试构建它失败时:
go build
main.go:2:8: no required module provides package github.com/gin-gonic/gin; to add it:
go get github.com/gin-gonic/gin
但是当我 运行 go get github.com/gin-gonic/gin
然后构建时, go.mod
中的所有依赖项仍然标记为间接。
那么是什么原因呢?我在这里错过了什么?还是我理解错了 indirect?
您的理解是正确的。 indirect
注释表示依赖项不被您的模块直接使用,仅被其他模块依赖项间接使用。
当你第一次运行go get github.com/gin-gonic/gin
时,模块会被下载,但由于你不使用它,它仍然会被标记为indirect
。
当您开始使用它时,它将不再是 indirect
,但是 go build
不会自动更新 go mod
。
运行go mod tidy
,以后就不标indirect
了
$ go mod tidy
$ cat go.mod
module firstgo_app
go 1.18
require github.com/gin-gonic/gin v1.7.7
require (
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/sys v0.0.0-20200116001909-b77594299b42 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
自从 Go 1.14:
go commands other than
go mod tidy
no longer edit thego.mod
file if the changes are only cosmetic.