This repository has been archived by the owner on Sep 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from ldsec/go1.15
Getting ready for v3.0.0 release
- Loading branch information
Showing
7 changed files
with
189 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.14 as build | ||
FROM golang:1.15 as build | ||
ARG MEDCO_VERSION=dev | ||
|
||
COPY ./ /src | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
module github.com/ldsec/medco | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect | ||
github.com/daviddengcn/go-colortext v1.0.0 // indirect | ||
github.com/BurntSushi/toml v0.4.1 | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect | ||
github.com/fanliao/go-concurrentMap v0.0.0-20141114143905-7d2d7a5ea67b | ||
github.com/go-openapi/errors v0.19.7 | ||
github.com/go-openapi/loads v0.19.5 | ||
github.com/go-openapi/runtime v0.19.22 | ||
github.com/go-openapi/spec v0.19.9 | ||
github.com/go-openapi/strfmt v0.19.5 | ||
github.com/go-openapi/swag v0.19.9 | ||
github.com/go-openapi/validate v0.19.11 | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/jessevdk/go-flags v1.4.0 | ||
github.com/ldsec/unlynx v1.4.1 | ||
github.com/lestrrat-go/jwx v0.9.0 | ||
github.com/lib/pq v1.8.0 | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mitchellh/mapstructure v1.3.3 // indirect | ||
github.com/go-openapi/analysis v0.21.1 // indirect | ||
github.com/go-openapi/errors v0.20.1 | ||
github.com/go-openapi/loads v0.21.0 | ||
github.com/go-openapi/runtime v0.21.0 | ||
github.com/go-openapi/spec v0.20.4 | ||
github.com/go-openapi/strfmt v0.21.1 | ||
github.com/go-openapi/swag v0.19.15 | ||
github.com/go-openapi/validate v0.20.3 | ||
github.com/go-stack/stack v1.8.1 // indirect | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/ldsec/unlynx v1.4.3 | ||
github.com/lestrrat-go/jwx v1.2.13 | ||
github.com/lib/pq v1.10.4 | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/r0fls/gostats v0.0.0-20180711082619-e793b1fda35c | ||
github.com/sirupsen/logrus v1.6.0 | ||
github.com/smartystreets/goconvey v1.6.4 // indirect | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/urfave/cli v1.22.4 | ||
go.dedis.ch/kyber/v3 v3.0.12 | ||
go.dedis.ch/onet/v3 v3.2.0 | ||
go.etcd.io/bbolt v1.3.5 // indirect | ||
go.mongodb.org/mongo-driver v1.5.1 // indirect | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
golang.org/x/net v0.0.0-20211201190559-0a0e4e1bb54c | ||
golang.org/x/text v0.3.7 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/urfave/cli v1.22.5 | ||
go.dedis.ch/kyber/v3 v3.0.13 | ||
go.dedis.ch/onet/v3 v3.2.10 | ||
go.mongodb.org/mongo-driver v1.8.1 // indirect | ||
golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b // indirect | ||
golang.org/x/net v0.0.0-20211209124913-491a49abca63 | ||
golang.org/x/sys v0.0.0-20211214170744-3b038e5940ed // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ||
|
||
go 1.14 | ||
go 1.15 |
Oops, something went wrong.