Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Depend on branch build of go-imap
  • Loading branch information
MFAshby committed Jul 6, 2019
1 parent ef936ab commit 177b86b
Show file tree
Hide file tree
Showing 6 changed files with 421 additions and 51 deletions.
4 changes: 3 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"dockerFile": "Dockerfile",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt", "seccomp=unconfined"
"--security-opt", "seccomp=unconfined",
"-v", "${env:HOME}/.ssh/id_rsa:/root/.ssh/id_rsa",
"-v", "${env:HOME}/.ssh/id_rsa.pub:/root/.ssh/id_rsa.pub"
],

// Uncomment the next line if you want to publish any ports.
Expand Down
66 changes: 51 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,25 +1,61 @@
module henrymail

replace github.com/emersion/go-imap => github.com/MFAshby/go-imap v1.0.0-beta.4.0.20190706162212-0c441765d69b

require (
github.com/BurntSushi/toml v0.3.1 // indirect
cloud.google.com/go v0.41.0 // indirect
github.com/alexflint/go-arg v1.0.0 // indirect
github.com/aprice/embed v0.0.0-20181126214606-b9ceb1f6d22d
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.13+incompatible // indirect
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20190515213511-eb9f6a1743f3 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/emersion/go-dkim v0.0.0-20181215182626-18000c30d4b8
github.com/emersion/go-imap v1.0.0-beta.1
github.com/emersion/go-message v0.9.1
github.com/emersion/go-smtp v0.0.0-20190111112644-81d5952b6339
github.com/emersion/go-textwrapper v0.0.0-20160606182133-d0e65e56babe // indirect
github.com/google/go-cmp v0.2.0
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.2
github.com/emersion/go-dkim v0.3.0
github.com/emersion/go-imap v1.0.0
github.com/emersion/go-message v0.10.4-0.20190609165112-592ace5bc1ca
github.com/emersion/go-msgauth v0.2.0 // indirect
github.com/emersion/go-sasl v0.0.0-20190704090222-36b50694675c // indirect
github.com/emersion/go-smtp v0.11.1
github.com/go-kit/kit v0.9.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/google/go-cmp v0.3.0
github.com/gorilla/mux v1.7.3
github.com/grpc-ecosystem/grpc-gateway v1.9.3 // indirect
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/knq/snaker v0.0.0-20181215144011-2bc8a4db4687 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/lib/pq v1.1.1 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/martinlindhe/base36 v1.0.0 // indirect
github.com/mattn/go-sqlite3 v1.10.0
github.com/miekg/dns v1.1.3
github.com/pkg/errors v0.8.0
github.com/miekg/dns v1.1.15
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/common v0.6.0 // indirect
github.com/prometheus/procfs v0.0.3 // indirect
github.com/robfig/cron v1.2.0 // indirect
github.com/spf13/viper v1.3.1
github.com/rogpeppe/fastuuid v1.1.0 // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/ugorji/go v1.1.7 // indirect
github.com/xo/dburl v0.0.0-20190203050942-98997a05b24f // indirect
github.com/xo/xo v0.0.0-20190105221319-1a94fa516029
github.com/xo/xoutil v0.0.0-20171112033149-46189f4026a5
golang.org/x/crypto v0.0.0-20190103213133-ff983b9c42bc
golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3 // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/exp v0.0.0-20190627132806-fd42eb6b336f // indirect
golang.org/x/image v0.0.0-20190703141733-d6a02ce849c9 // indirect
golang.org/x/mobile v0.0.0-20190607214518-6fa95d984e88 // indirect
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect
golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db // indirect
google.golang.org/genproto v0.0.0-20190701230453-710ae3a149df // indirect
google.golang.org/grpc v1.22.0 // indirect
)
Loading

0 comments on commit 177b86b

Please sign in to comment.