0

在我的go.mod档案中。我想从 golang.org 更改有关模块的版本控制。

他们在版本之后有提交日期和哈希。

我正在使用 go mod,所以我go.mod的工作区中有文件。我go.mod的如下。

module myproject

go 1.12.6

require (
    github.com/lib/pq v1.1.1
    golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
    golang.org/x/image v0.0.0-20190523035834-f03afa92d3ff
)

像这样。

golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 -> golang.org/x/crypto v0.0.0

如何改变它?

我认为他们没有官方的主要版本控制。结果,我想简化我的go.mod文件

4

1 回答 1

0

The versioning for a Go module is determined by the author of that module, not the consumer.

(You can use a replace directive to remap versions arbitrarily, but then nobody could use your module without doing that same remapping — it wouldn't simplify anything for anybody.)

于 2019-07-30T19:13:55.353 回答