diff options
author | Alan Pearce | 2024-06-30 22:14:37 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-30 22:14:37 +0200 |
commit | a14e030b41799ea65e026d600ce18a48507bebd0 (patch) | |
tree | d1471a9cb5a335457f42b10a1e7150210ab00be2 /go.mod | |
parent | c4d5654e6360e90be2106439463f49acb55dffc8 (diff) | |
download | website-a14e030b41799ea65e026d600ce18a48507bebd0.tar.lz website-a14e030b41799ea65e026d600ce18a48507bebd0.tar.zst website-a14e030b41799ea65e026d600ce18a48507bebd0.zip |
extract logging library
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/go.mod b/go.mod index 35f61c5..05bb1fa 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module go.alanpearce.eu/website -go 1.22.1 +go 1.22.3 require ( github.com/BurntSushi/toml v1.4.0 @@ -24,12 +24,9 @@ require ( github.com/pberkel/caddy-storage-redis v1.2.0 github.com/snabb/sitemap v1.0.4 github.com/stefanfritsch/goldmark-fences v1.0.0 - github.com/sykesm/zap-logfmt v0.0.4 - github.com/thessem/zap-prettyconsole v0.5.0 github.com/yuin/goldmark v1.7.4 gitlab.com/tozd/go/errors v0.8.1 - go.uber.org/zap v1.27.0 - moul.io/zapfilter v1.7.0 + go.alanpearce.eu/x v0.0.0-20240630201241-61dffc8ded60 ) require ( @@ -85,11 +82,14 @@ require ( github.com/snabb/diagio v1.0.4 // indirect github.com/spf13/cobra v1.8.1 // indirect github.com/spf13/pflag v1.0.5 // indirect + github.com/sykesm/zap-logfmt v0.0.4 // indirect + github.com/thessem/zap-prettyconsole v0.5.0 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/zeebo/blake3 v0.2.3 // indirect go.uber.org/automaxprocs v1.5.3 // indirect go.uber.org/mock v0.4.0 // indirect go.uber.org/multierr v1.11.0 // indirect + go.uber.org/zap v1.27.0 // indirect go.uber.org/zap/exp v0.2.0 // indirect golang.org/x/crypto v0.24.0 // indirect golang.org/x/crypto/x509roots/fallback v0.0.0-20240624163532-1c7450041f58 // indirect @@ -106,4 +106,5 @@ require ( gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect + moul.io/zapfilter v1.7.0 // indirect ) |