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:
Jan Dittberner 2020-04-17 19:38:32 +02:00
parent a89275a8e4
commit 5aa557c9aa
5 changed files with 33 additions and 50 deletions

9
go.mod Normal file
View 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
)