forked from h2non/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: upgrade go version 1.18 (#31)
- Loading branch information
1 parent
43b451d
commit 5ab1771
Showing
4 changed files
with
607 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,55 @@ | ||
module github.com/kumparan/imaginary | ||
|
||
go 1.13 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/alicebob/miniredis v2.5.0+incompatible | ||
github.com/aws/aws-sdk-go v1.25.40 | ||
github.com/banzaicloud/logrus-runtime-formatter v0.0.0-20180617171254-12df4a18567f | ||
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect | ||
github.com/aws/aws-sdk-go v1.44.145 | ||
github.com/banzaicloud/logrus-runtime-formatter v0.0.0-20190729070250-5ae5475bae5e | ||
github.com/disintegration/imaging v1.6.2 | ||
github.com/evalphobia/logrus_sentry v0.8.2 | ||
github.com/getsentry/raven-go v0.2.0 // indirect | ||
github.com/go-redsync/redsync v1.1.1 | ||
github.com/gomodule/redigo v2.0.0+incompatible | ||
github.com/kumparan/bimg v1.0.19-0.20211025073642-47a38529c8af | ||
github.com/kumparan/cacher v1.7.0 | ||
github.com/rs/cors v0.0.0-20170727213201-7af7a1e09ba3 | ||
github.com/sirupsen/logrus v1.4.0 | ||
github.com/spf13/afero v1.2.0 // indirect | ||
github.com/spf13/viper v1.5.0 | ||
github.com/stretchr/testify v1.4.0 // indirect | ||
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect | ||
golang.org/x/net v0.0.0-20190607181551-461777fb6f67 // indirect | ||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect | ||
github.com/kumparan/cacher v1.12.1 | ||
github.com/kumparan/redsync/v4 v4.0.0-20220629071359-52de590a1465 | ||
github.com/rs/cors v1.8.2 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/viper v1.14.0 | ||
gopkg.in/h2non/filetype.v0 v0.1.0 | ||
gopkg.in/h2non/filetype.v1 v1.0.3 // indirect | ||
gopkg.in/throttled/throttled.v2 v2.0.3 | ||
gopkg.in/throttled/throttled.v2 v2.2.5 | ||
willnorris.com/go/gifresize v1.0.0 | ||
) | ||
|
||
require ( | ||
github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a // indirect | ||
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/getsentry/raven-go v0.2.0 // indirect | ||
github.com/go-redsync/redsync/v4 v4.6.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/afero v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/throttled/throttled v2.2.5+incompatible // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect | ||
golang.org/x/image v0.1.0 // indirect | ||
golang.org/x/net v0.2.0 // indirect | ||
golang.org/x/sys v0.2.0 // indirect | ||
golang.org/x/text v0.4.0 // indirect | ||
gopkg.in/h2non/filetype.v1 v1.0.5 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.