-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2650f69
commit b277e60
Showing
4 changed files
with
117 additions
and
70 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,55 +1,58 @@ | ||
module github.com/creativeprojects/imap | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/creativeprojects/go-selfupdate v1.0.1 | ||
github.com/creativeprojects/go-selfupdate v1.1.2 | ||
github.com/emersion/go-imap v1.2.1 | ||
github.com/emersion/go-imap-compress v0.0.0-20201103190257-14809af1d1b9 | ||
github.com/emersion/go-imap-uidplus v0.0.0-20200503180755-e75854c361e9 | ||
github.com/emersion/go-maildir v0.3.0 | ||
github.com/pterm/pterm v0.12.55 | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/stretchr/testify v1.8.2 | ||
go.etcd.io/bbolt v1.3.7 | ||
golang.org/x/net v0.8.0 | ||
github.com/emersion/go-maildir v0.3.1 | ||
github.com/pterm/pterm v0.12.69 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/stretchr/testify v1.8.4 | ||
go.etcd.io/bbolt v1.3.8 | ||
golang.org/x/net v0.17.0 | ||
golang.org/x/time v0.3.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
atomicgo.dev/cursor v0.1.1 // indirect | ||
atomicgo.dev/cursor v0.2.0 // indirect | ||
atomicgo.dev/keyboard v0.2.9 // indirect | ||
code.gitea.io/sdk/gitea v0.15.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.0 // indirect | ||
atomicgo.dev/schedule v0.1.0 // indirect | ||
code.gitea.io/sdk/gitea v0.16.0 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/containerd/console v1.0.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emersion/go-message v0.16.0 // indirect | ||
github.com/davidmz/go-pageant v1.0.2 // indirect | ||
github.com/emersion/go-message v0.17.0 // indirect | ||
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead // indirect | ||
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect | ||
github.com/go-fed/httpsig v1.1.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-github/v30 v30.1.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/gookit/color v1.5.2 // indirect | ||
github.com/gookit/color v1.5.4 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect | ||
github.com/hashicorp/go-version v1.6.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/lithammer/fuzzysearch v1.1.5 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/lithammer/fuzzysearch v1.1.8 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/ulikunitz/xz v0.5.11 // indirect | ||
github.com/xanzy/go-gitlab v0.81.0 // indirect | ||
github.com/xanzy/go-gitlab v0.93.2 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/oauth2 v0.6.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/term v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.29.1 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/oauth2 v0.13.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) |
Oops, something went wrong.