Closed urandom2 closed 5 years ago
Does the lack of a go.mod cause concrete problems in downstream dependencies?
While there is currently no breakage from the lack of a go.mod
file, not having indirect dependencies tracked means that consumers have to track them directly:
module github.com/user/repo
go 1.12
require (
github.com/google/btree v1.0.0 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible
)
I'd appreciate having the mod file. Thanks.
v2.0.0+incompatible
versions in consumersv3.0.0
v2.1.0
, but this could cause consumer breakage