diff options
author | Alan Pearce | 2024-04-23 21:54:38 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-23 22:06:09 +0200 |
commit | 68c5ef35c1c5da36d286423994cdef7a02f847f7 (patch) | |
tree | 5c251f964f59db8b2e3cbf40ee4c096f05665d7e /go.mod | |
parent | a726f1d1a0a4b8af0a147e5e4e3fd00cc47e26cb (diff) | |
download | website-68c5ef35c1c5da36d286423994cdef7a02f847f7.tar.lz website-68c5ef35c1c5da36d286423994cdef7a02f847f7.tar.zst website-68c5ef35c1c5da36d286423994cdef7a02f847f7.zip |
switch to net/http
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/go.mod b/go.mod index d2d20e0..ca31318 100644 --- a/go.mod +++ b/go.mod @@ -7,14 +7,11 @@ require ( github.com/PuerkitoBio/goquery v1.9.1 github.com/a-h/htmlformat v0.0.0-20231108124658-5bd994fe268e github.com/adrg/frontmatter v0.2.0 - github.com/ansrivas/fiberprometheus/v2 v2.6.1 github.com/antchfx/xmlquery v1.4.0 github.com/antchfx/xpath v1.3.0 github.com/ardanlabs/conf/v3 v3.1.7 github.com/deckarep/golang-set/v2 v2.6.0 github.com/getsentry/sentry-go v0.27.0 - github.com/gofiber/contrib/fibersentry v1.0.4 - github.com/gofiber/fiber/v2 v2.52.4 github.com/otiai10/copy v1.14.0 github.com/pkg/errors v0.9.1 github.com/shengyanli1982/law v0.1.13 @@ -25,31 +22,13 @@ require ( replace github.com/a-h/htmlformat => github.com/alanpearce/htmlformat v0.0.0-20240418170242-387207ca8d01 require ( - github.com/andybalholm/brotli v1.1.0 // indirect github.com/andybalholm/cascadia v1.3.2 // indirect - github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.3.0 // indirect - github.com/gofiber/adaptor/v2 v2.2.1 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/google/uuid v1.6.0 // indirect - github.com/klauspost/compress v1.17.8 // indirect - github.com/kr/text v0.1.0 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-runewidth v0.0.15 // indirect - github.com/philhofer/fwd v1.1.2 // indirect - github.com/prometheus/client_golang v1.19.0 // indirect - github.com/prometheus/client_model v0.6.1 // indirect - github.com/prometheus/common v0.53.0 // indirect - github.com/prometheus/procfs v0.14.0 // indirect - github.com/rivo/uniseg v0.4.7 // indirect - github.com/tinylib/msgp v1.1.9 // indirect - github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasthttp v1.52.0 // indirect - github.com/valyala/tcplisten v1.0.0 // indirect + github.com/kr/pretty v0.3.1 // indirect + github.com/rogpeppe/go-internal v1.10.0 // indirect golang.org/x/sync v0.7.0 // indirect golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect - google.golang.org/protobuf v1.33.0 // indirect + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) |