Skip to content

Commit

Permalink
Merge pull request #1189 from cloudflare/nicky/fix-coreos-mod-rename
Browse files Browse the repository at this point in the history
  • Loading branch information
nickysemenza committed Jul 14, 2021
2 parents f4208c6 + e582ed4 commit 29ae05f
Show file tree
Hide file tree
Showing 3,241 changed files with 717,641 additions and 48,444 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,14 @@ language: go

matrix:
include:
- go: 1.12.x
- go: 1.13.x
- go: 1.14.x
- go: 1.15.x
- arch: s390x
go: 1.12.x
- arch: s390x
go: 1.13.x
- arch: s390x
go: 1.14.x
- arch: s390x
go: 1.15.x
- arch: ppc64le
go: 1.12.x
- arch: ppc64le
go: 1.13.x
- arch: ppc64le
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ You can set the `GOOS` and `GOARCH` environment variables to have Go cross compi

### Installation

Installation requires a
[working Go 1.12+ installation](http://golang.org/doc/install).
Installation requires a [working Go 1.14+ installation](http://golang.org/doc/install).
Alternatively, [prebuilt binaries are available](https://github.com/cloudflare/cfssl/releases)

```
$ go get -u github.com/cloudflare/cfssl/cmd/cfssl
$ go get github.com/cloudflare/cfssl/cmd/cfssl
```

will download, build, and install the CFSSL tool.
Expand All @@ -73,15 +73,15 @@ To install any of the other utility programs that are
in this repo (for instance `cfssljson` in this case):

```
$ go get -u github.com/cloudflare/cfssl/cmd/cfssljson
$ go get github.com/cloudflare/cfssl/cmd/cfssljson
```

This will download, build, and install the CFSSLJSON tool.

And to simply install __all__ of the programs in this repo:

```
$ go get -u github.com/cloudflare/cfssl/cmd/...
$ go get github.com/cloudflare/cfssl/cmd/...
```

This will download, build, and install all of the utility programs
Expand Down Expand Up @@ -353,7 +353,7 @@ for configuring and running the CA.
verifying certificates. It can be installed with

```
go get -u github.com/cloudflare/cfssl/cmd/mkbundle
go get github.com/cloudflare/cfssl/cmd/mkbundle
```

It takes a collection of certificates, checks for CRL revocation (OCSP
Expand Down
67 changes: 47 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,54 @@ go 1.14

require (
bitbucket.org/liamstask/goose v0.0.0-20150115234039-8488cc47d90c
github.com/GeertJohan/go.rice v1.0.0
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 // indirect
github.com/GeertJohan/go.rice v1.0.2
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
github.com/cloudflare/backoff v0.0.0-20161212185259-647f3cdfc87a
github.com/cloudflare/redoctober v0.0.0-20171127175943-746a508df14c
github.com/getsentry/raven-go v0.0.0-20180121060056-563b81fc02b7 // indirect
github.com/go-sql-driver/mysql v1.4.0
github.com/google/certificate-transparency-go v1.0.21
github.com/cloudflare/redoctober v0.0.0-20201013214028-99c99a8e7544
github.com/cncf/udpa/go v0.0.0-20210322005330-6414d713912e // indirect
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
github.com/daaku/go.zipexe v1.0.1 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.1 // indirect
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
github.com/go-sql-driver/mysql v1.6.0
github.com/golang/glog v0.0.0-20210429001901-424d2337a529 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/certificate-transparency-go v1.1.2-0.20210511102531-373a877eec92
github.com/google/uuid v1.2.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/jmhodges/clock v0.0.0-20160418191101-880ee4c33548
github.com/jmoiron/sqlx v1.2.0
github.com/kisielk/sqlstruct v0.0.0-20150923205031-648daed35d49
github.com/kisom/goutils v1.1.0
github.com/kylelemons/go-gypsy v0.0.0-20160905020020-08cad365cd28 // indirect
github.com/lib/pq v1.3.0
github.com/mattn/go-sqlite3 v1.10.0
github.com/prometheus/client_golang v1.9.0
github.com/stretchr/testify v1.4.0
github.com/jmoiron/sqlx v1.3.3
github.com/json-iterator/go v1.1.11 // indirect
github.com/kisielk/sqlstruct v0.0.0-20201105191214-5f3e10d3ab46
github.com/kisom/goutils v1.4.3
github.com/kylelemons/go-gypsy v1.0.0 // indirect
github.com/lib/pq v1.10.1
github.com/mattn/go-runewidth v0.0.12 // indirect
github.com/mattn/go-sqlite3 v1.14.7
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/prometheus/client_golang v1.10.0
github.com/prometheus/common v0.24.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/soheilhy/cmux v0.1.5 // indirect
github.com/spf13/cobra v1.1.3 // indirect
github.com/stretchr/testify v1.7.0
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
github.com/urfave/cli v1.22.5 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
github.com/zmap/zcrypto v0.0.0-20201128221613-3719af1573cf
github.com/zmap/zlint/v3 v3.0.0
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392
golang.org/x/lint v0.0.0-20190930215403-16217165b5de
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
google.golang.org/appengine v1.6.6 // indirect
github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc
github.com/zmap/zlint/v3 v3.1.0
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20210510120150-4163338589ed
golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c // indirect
golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
google.golang.org/genproto v0.0.0-20210510173355-fb37daa5cd7a // indirect
honnef.co/go/tools v0.1.4 // indirect
)
Loading

0 comments on commit 29ae05f

Please sign in to comment.