Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Bump golang.org/x/net from 0.0.0-20210913180222-943fd674d43e to 0.7.0 #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 15 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ module github.com/dotkom/image-server
go 1.17

require (
github.com/jackc/pgx v3.6.2+incompatible
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
gorm.io/gorm v1.22.0 // indirect
gorm.io/gorm v1.22.0
)

require (
Expand All @@ -17,16 +16,15 @@ require (
)

require (
github.com/allegro/bigcache v1.2.1 // indirect
github.com/allegro/bigcache/v3 v3.0.1 // indirect
github.com/chai2010/webp v1.1.0 // indirect
github.com/disintegration/imaging v1.6.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/allegro/bigcache v1.2.1
github.com/chai2010/webp v1.1.0
github.com/disintegration/imaging v1.6.2
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/mattn/go-sqlite3 v1.14.9 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/sirupsen/logrus v1.8.1
golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d // indirect
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 // indirect
golang.org/x/sys v0.5.0 // indirect
gorm.io/driver/postgres v1.2.0
)

Expand All @@ -41,7 +39,7 @@ require (
github.com/jackc/pgx/v4 v4.13.0 // indirect
github.com/spf13/cobra v1.2.1
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/text v0.7.0 // indirect
)

require (
Expand All @@ -68,6 +66,11 @@ require (
gopkg.in/yaml.v2 v2.4.0 // indirect
)

require (
github.com/labstack/echo-contrib v0.11.0
github.com/labstack/echo/v4 v4.6.1
)

require (
github.com/aws/aws-sdk-go-v2 v1.10.0 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.5.0 // indirect
Expand All @@ -82,12 +85,8 @@ require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/labstack/echo v3.3.10+incompatible // indirect
github.com/labstack/echo-contrib v0.11.0 // indirect
github.com/labstack/echo/v4 v4.6.1 // indirect
github.com/labstack/gommon v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
Expand All @@ -103,7 +102,7 @@ require (
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
Expand Down
Loading