aboutsummaryrefslogtreecommitdiff
path: root/echo/go.mod
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2023-12-05 18:50:09 -0800
committerMike Crute <mike@crute.us>2023-12-05 18:50:09 -0800
commitf0c1818b9148e56f8e1c0c3fd8a6c4070d9a80d3 (patch)
tree24a21bbec2b84dee3bbc5df0954d4d128cabc5d1 /echo/go.mod
parente01c3ce59a9c01398c7aa27374c882e724896ad4 (diff)
downloadgolib-f0c1818b9148e56f8e1c0c3fd8a6c4070d9a80d3.tar.bz2
golib-f0c1818b9148e56f8e1c0c3fd8a6c4070d9a80d3.tar.xz
golib-f0c1818b9148e56f8e1c0c3fd8a6c4070d9a80d3.zip
echo: add CSS and JS minifiersecho/v0.17.0
Diffstat (limited to 'echo/go.mod')
-rw-r--r--echo/go.mod7
1 files changed, 5 insertions, 2 deletions
diff --git a/echo/go.mod b/echo/go.mod
index 23a62be..64877fc 100644
--- a/echo/go.mod
+++ b/echo/go.mod
@@ -7,13 +7,15 @@ require (
7 code.crute.us/mcrute/golib/clients/netbox/v4 v4.1.0 7 code.crute.us/mcrute/golib/clients/netbox/v4 v4.1.0
8 code.crute.us/mcrute/golib/secrets v0.4.0 8 code.crute.us/mcrute/golib/secrets v0.4.0
9 code.crute.us/mcrute/golib/vault v0.2.6 9 code.crute.us/mcrute/golib/vault v0.2.6
10 code.crute.us/mcrute/golib/web/css v0.1.0 10 code.crute.us/mcrute/golib/web/css v0.1.1
11 github.com/elnormous/contenttype v1.0.3 11 github.com/elnormous/contenttype v1.0.3
12 github.com/hashicorp/golang-lru/v2 v2.0.7
12 github.com/labstack/echo/v4 v4.6.1 13 github.com/labstack/echo/v4 v4.6.1
13 github.com/labstack/gommon v0.3.1 14 github.com/labstack/gommon v0.3.1
14 github.com/prometheus/client_golang v1.11.0 15 github.com/prometheus/client_golang v1.11.0
15 github.com/quic-go/quic-go v0.39.0 16 github.com/quic-go/quic-go v0.39.0
16 github.com/stretchr/testify v1.8.1 17 github.com/stretchr/testify v1.8.1
18 github.com/tdewolff/minify/v2 v2.20.9
17 gopkg.in/square/go-jose.v2 v2.5.1 19 gopkg.in/square/go-jose.v2 v2.5.1
18) 20)
19 21
@@ -70,6 +72,7 @@ require (
70 github.com/quic-go/qpack v0.4.0 // indirect 72 github.com/quic-go/qpack v0.4.0 // indirect
71 github.com/quic-go/qtls-go1-20 v0.3.4 // indirect 73 github.com/quic-go/qtls-go1-20 v0.3.4 // indirect
72 github.com/ryanuber/go-glob v1.0.0 // indirect 74 github.com/ryanuber/go-glob v1.0.0 // indirect
75 github.com/tdewolff/parse/v2 v2.7.6 // indirect
73 github.com/valyala/bytebufferpool v1.0.0 // indirect 76 github.com/valyala/bytebufferpool v1.0.0 // indirect
74 github.com/valyala/fasttemplate v1.2.1 // indirect 77 github.com/valyala/fasttemplate v1.2.1 // indirect
75 go.uber.org/atomic v1.9.0 // indirect 78 go.uber.org/atomic v1.9.0 // indirect
@@ -78,7 +81,7 @@ require (
78 golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect 81 golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
79 golang.org/x/mod v0.11.0 // indirect 82 golang.org/x/mod v0.11.0 // indirect
80 golang.org/x/net v0.10.0 // indirect 83 golang.org/x/net v0.10.0 // indirect
81 golang.org/x/sys v0.10.0 // indirect 84 golang.org/x/sys v0.15.0 // indirect
82 golang.org/x/text v0.11.0 // indirect 85 golang.org/x/text v0.11.0 // indirect
83 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect 86 golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
84 golang.org/x/tools v0.9.1 // indirect 87 golang.org/x/tools v0.9.1 // indirect