summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2020-03-06 23:15:25 -0700
committerMatthew Holt <mholt@users.noreply.github.com>2020-03-06 23:15:25 -0700
commitb8cba62643abf849411856bd92c42b59b98779f4 (patch)
tree518ddc4db0ce065353fd6f499c8eaf2975b65d13 /go.mod
parent7cca291d62c910c0544f0c0169a8f0c81627e5d3 (diff)
Refactor for CertMagic v0.10; prepare for PKI app
This is a breaking change primarily in two areas: - Storage paths for certificates have changed - Slight changes to JSON config parameters Huge improvements in this commit, to be detailed more in the release notes. The upcoming PKI app will be powered by Smallstep libraries.
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod49
1 files changed, 23 insertions, 26 deletions
diff --git a/go.mod b/go.mod
index 41be531..7736b9b 100644
--- a/go.mod
+++ b/go.mod
@@ -1,38 +1,35 @@
module github.com/caddyserver/caddy/v2
-go 1.13
+go 1.14
require (
- github.com/Masterminds/sprig/v3 v3.0.0
- github.com/alecthomas/chroma v0.7.0
- github.com/andybalholm/brotli v0.0.0-20190821151343-b60f0d972eeb
- github.com/cenkalti/backoff/v3 v3.1.1 // indirect
- github.com/dustin/go-humanize v1.0.0
- github.com/go-acme/lego/v3 v3.3.0
- github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc
+ github.com/Masterminds/sprig/v3 v3.0.2
+ github.com/alecthomas/chroma v0.7.1
+ github.com/andybalholm/brotli v1.0.0
+ github.com/caddyserver/certmagic v0.10.0
+ github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac
+ github.com/go-acme/lego/v3 v3.4.0
+ github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
github.com/ilibs/json5 v1.0.1
- github.com/imdario/mergo v0.3.8 // indirect
github.com/jsternberg/zap-logfmt v1.2.0
- github.com/klauspost/compress v1.8.6
- github.com/klauspost/cpuid v1.2.2
- github.com/kylelemons/godebug v1.1.0 // indirect
- github.com/lucas-clemente/quic-go v0.14.4
- github.com/mholt/certmagic v0.9.3
- github.com/miekg/dns v1.1.25 // indirect
- github.com/muhammadmuzzammil1998/jsonc v0.0.0-20190906142622-1265e9b150c6
+ github.com/klauspost/compress v1.10.2
+ github.com/klauspost/cpuid v1.2.3
+ github.com/lucas-clemente/quic-go v0.15.1
+ github.com/manifoldco/promptui v0.7.0 // indirect
+ github.com/miekg/dns v1.1.27 // indirect
+ github.com/muhammadmuzzammil1998/jsonc v0.0.0-20200303171503-1e787b591db7
github.com/naoina/go-stringutil v0.1.0 // indirect
github.com/naoina/toml v0.1.1
- github.com/onsi/ginkgo v1.8.0 // indirect
- github.com/onsi/gomega v1.5.0 // indirect
+ github.com/smallstep/certificates v0.14.0-rc.5
+ github.com/smallstep/cli v0.14.0-rc.3
+ github.com/smallstep/truststore v0.9.4
github.com/vulcand/oxy v1.0.0
- github.com/yuin/goldmark v1.1.17
- github.com/yuin/goldmark-highlighting v0.0.0-20191202084645-78f32c8dd6d5
- go.uber.org/multierr v1.2.0 // indirect
- go.uber.org/zap v1.10.0
- golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413
- golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553
- golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
+ github.com/yuin/goldmark v1.1.24
+ github.com/yuin/goldmark-highlighting v0.0.0-20200218065240-d1af22c1126f
+ go.uber.org/zap v1.14.0
+ golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
+ golang.org/x/net v0.0.0-20200301022130-244492dfa37a
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/square/go-jose.v2 v2.4.1 // indirect
- gopkg.in/yaml.v2 v2.2.2
+ gopkg.in/yaml.v2 v2.2.8
)