Move to go modules
Go >= 1.11 has a module system, support for dep has been dropped. This commit changes the dependency management to go modules.
This commit is contained in:
parent
a89275a8e4
commit
5aa557c9aa
5 changed files with 33 additions and 50 deletions
9
go.mod
Normal file
9
go.mod
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
module git.cacert.org/cacert-gosigner
|
||||
|
||||
go 1.14
|
||||
|
||||
require (
|
||||
github.com/goburrow/serial v0.1.0
|
||||
github.com/sirupsen/logrus v1.5.0
|
||||
gopkg.in/yaml.v2 v2.2.8
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue