Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mdouchement committed Feb 25, 2023
1 parent 12038cd commit 138d0f9
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 90 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: '3'

vars:
VERSION: 0.10.0
VERSION: 0.10.1
REVISION: { sh: git rev-parse HEAD }
WORKDIR: { sh: pwd }

Expand Down
48 changes: 25 additions & 23 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mdouchement/standardfile

go 1.17
go 1.18

require (
github.com/appleboy/gofight/v2 v2.1.2
Expand All @@ -10,55 +10,57 @@ require (
github.com/chzyer/readline v1.5.1
github.com/d1str0/pkcs7 v0.0.0-20200424205038-d65c16a5759a
github.com/gcla/gowid v1.4.0
github.com/gdamore/tcell/v2 v2.5.3
github.com/gofrs/uuid v4.3.0+incompatible
github.com/gdamore/tcell/v2 v2.6.0
github.com/gofrs/uuid v4.4.0+incompatible
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/knadh/koanf v1.4.3
github.com/labstack/echo/v4 v4.9.1
github.com/mdouchement/middlewarex v0.3.2
github.com/mdouchement/simple-argon2 v0.1.2
github.com/knadh/koanf v1.5.0
github.com/labstack/echo/v4 v4.10.2
github.com/mdouchement/middlewarex v0.3.4
github.com/mdouchement/simple-argon2 v0.1.5
github.com/o1egl/paseto/v2 v2.1.1
github.com/oleiade/reflections v1.0.1
github.com/pkg/errors v0.9.1
github.com/sanity-io/litter v1.5.5
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.0
github.com/stretchr/testify v1.7.0
github.com/ugorji/go/codec v1.2.7
github.com/valyala/fastjson v1.6.3
github.com/spf13/cobra v1.6.1
github.com/stretchr/testify v1.8.1
github.com/ugorji/go/codec v1.2.10
github.com/valyala/fastjson v1.6.4
github.com/xwb1989/sqlparser v0.0.0-20180606152119-120387863bf2
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a
gopkg.in/natefinch/lumberjack.v2 v2.0.0
golang.org/x/crypto v0.6.0
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/golang-jwt/jwt/v4 v4.4.3 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/labstack/echo-jwt/v4 v4.1.0 // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
go.etcd.io/bbolt v1.3.6 // indirect
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b // indirect
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect
golang.org/x/term v0.0.0-20220919170432-7a66f970e087 // indirect
golang.org/x/text v0.3.8 // indirect
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
go.etcd.io/bbolt v1.3.7 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
Expand Down
Loading

0 comments on commit 138d0f9

Please sign in to comment.