forked from letsencrypt/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to modules (letsencrypt#4211)
Because the package versions in go.mod match what we use in Godeps.json, there are no substantive code diffs. However, there are some tiny differences resulting from how go mod vendors things differently than godep: go mod does not preserve executable permissions on shell scripts Some packages have import lines like: package ocsp // import "golang.org/x/crypto/ocsp" godep used to remove the comment from these lines, but go mod vendor does not. This introduces several indirect dependencies that we didn't have before. This is because godep used to operate at a package level, but go mod operates at a module (~= repository) level. So if we used a given repository, but didn't use all of its packages, we wouldn't previously care about the transitive dependencies of the packages we weren't using. However, in the go mod world, once we care about the repository, we care about all of that repository's transitive dependencies. AFAICT this doesn't affect vendoring. Fixes letsencrypt#4116
- Loading branch information
1 parent
ea9871d
commit 1014a81
Showing
46 changed files
with
432 additions
and
79 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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
module github.com/letsencrypt/boulder | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/apoydence/onpar v0.0.0-20181125144932-f2f06780798d // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20170903095215-73945b6115bf // indirect | ||
github.com/beeker1121/goque v0.0.0-20170321141813-4044bc29b280 | ||
github.com/beorn7/perks v0.0.0-20160229213445-3ac7bf7a47d1 // indirect | ||
github.com/cloudflare/cfssl v0.0.0-20190409034051-768cd563887f | ||
github.com/go-gorp/gorp v2.0.0+incompatible // indirect | ||
github.com/go-sql-driver/mysql v0.0.0-20170715192408-3955978caca4 | ||
github.com/golang/mock v1.2.0 | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/golang/snappy v0.0.0-20170215233205-553a64147049 // indirect | ||
github.com/google/certificate-transparency-go v0.0.0-20181127102053-c25855a82c75 | ||
github.com/grpc-ecosystem/go-grpc-prometheus v0.0.0-20170826090648-0dafe0d496ea | ||
github.com/jmhodges/clock v0.0.0-20160418191101-880ee4c33548 | ||
github.com/jmoiron/sqlx v0.0.0-20180124204410-05cef0741ade // indirect | ||
github.com/kisielk/sqlstruct v0.0.0-20150923205031-648daed35d49 // indirect | ||
github.com/letsencrypt/challtestsrv v1.0.2 | ||
github.com/letsencrypt/pkcs11key v1.0.0 | ||
github.com/lib/pq v1.1.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.10.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/miekg/dns v1.1.8 | ||
github.com/miekg/pkcs11 v0.0.0-20180208123754-88ac7c418f89 | ||
github.com/onsi/ginkgo v1.8.0 // indirect | ||
github.com/onsi/gomega v1.5.0 // indirect | ||
github.com/poy/onpar v0.0.0-20181125144932-f2f06780798d // indirect | ||
github.com/prometheus/client_golang v0.8.0 | ||
github.com/prometheus/client_model v0.0.0-20150212101744-fa8ad6fec335 | ||
github.com/prometheus/common v0.0.0-20161002210234-85637ea67b04 // indirect | ||
github.com/prometheus/procfs v0.0.0-20160411190841-abf152e5f3e9 // indirect | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
github.com/syndtr/goleveldb v0.0.0-20180331014930-714f901b98fd // indirect | ||
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 | ||
github.com/weppos/publicsuffix-go v0.4.1-0.20190430132455-7c1d5dc5cdc2 | ||
github.com/ziutek/mymysql v1.5.4 // indirect | ||
github.com/zmap/zcrypto v0.0.0-20180601141720-cf96f6a85166 | ||
github.com/zmap/zlint v0.0.0-20190218154616-f38bd223a43c | ||
golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a | ||
golang.org/x/net v0.0.0-20190415214537-1da14a5a36f2 | ||
golang.org/x/sys v0.0.0-20190416152802-12500544f89f // indirect | ||
golang.org/x/text v0.3.0 | ||
google.golang.org/appengine v1.4.0 // indirect | ||
google.golang.org/genproto v0.0.0-20190415143225-d1146b9035b9 // indirect | ||
google.golang.org/grpc v1.20.0 | ||
gopkg.in/go-gorp/gorp.v2 v2.0.0-20180410155428-6032c66e0f5f | ||
gopkg.in/square/go-jose.v2 v2.1.4 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
) |
Oops, something went wrong.