about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2019-08-19 21:12:11 +0200
committerDrew DeVault <sir@cmpwn.com>2019-08-20 09:53:21 +0900
commit17aede55dd62278b2208a0b5c28a089cdf586e0b (patch)
tree4e870f238b781ef765239e96fddcb671ec89cdd1
parentcc639a1e656560fbfbbacbc115d3559c46452189 (diff)
downloadaerc-17aede55dd62278b2208a0b5c28a089cdf586e0b.tar.gz
upgrade go-message
Fixes date parsing bug in the maildir / notmuch workers.
-rw-r--r--go.mod4
-rw-r--r--go.sum4
2 files changed, 3 insertions, 5 deletions
diff --git a/go.mod b/go.mod
index b02cac9..1e30e3d 100644
--- a/go.mod
+++ b/go.mod
@@ -6,12 +6,11 @@ require (
 	git.sr.ht/~sircmpwn/getopt v0.0.0-20190621174457-292febf82fd0
 	git.sr.ht/~sircmpwn/pty v0.0.0-20190330154901-3a43678975a9
 	github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964
-	github.com/davecgh/go-spew v1.1.1 // indirect
 	github.com/ddevault/go-libvterm v0.0.0-20190526194226-b7d861da3810
 	github.com/emersion/go-imap v1.0.0
 	github.com/emersion/go-imap-idle v0.0.0-20190519112320-2704abd7050e
 	github.com/emersion/go-maildir v0.0.0-20190727102040-941194b0ac70
-	github.com/emersion/go-message v0.10.6
+	github.com/emersion/go-message v0.10.7
 	github.com/emersion/go-sasl v0.0.0-20190704090222-36b50694675c
 	github.com/emersion/go-smtp v0.11.2
 	github.com/fsnotify/fsnotify v1.4.7
@@ -21,7 +20,6 @@ require (
 	github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf
 	github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
 	github.com/kyoh86/xdg v1.0.0
-	github.com/martinlindhe/base36 v1.0.0 // indirect
 	github.com/mattn/go-isatty v0.0.8
 	github.com/mattn/go-runewidth v0.0.4
 	github.com/miolini/datacounter v0.0.0-20190724021726-aa48df3a02c1
diff --git a/go.sum b/go.sum
index f3ee9c6..20d560f 100644
--- a/go.sum
+++ b/go.sum
@@ -22,8 +22,8 @@ github.com/emersion/go-imap-idle v0.0.0-20190519112320-2704abd7050e/go.mod h1:o1
 github.com/emersion/go-maildir v0.0.0-20190727102040-941194b0ac70 h1:aUiPu6/iCjcsnNe/WkhsnMOq7vPmkYo9kFaMX5FiNZU=
 github.com/emersion/go-maildir v0.0.0-20190727102040-941194b0ac70/go.mod h1:I2j27lND/SRLgxROe50Vam81MSaqPFvJ0OHNnDZ7n84=
 github.com/emersion/go-message v0.10.4-0.20190609165112-592ace5bc1ca/go.mod h1:3h+HsGTCFHmk4ngJ2IV/YPhdlaOcR6hcgqM3yca9v7c=
-github.com/emersion/go-message v0.10.6 h1:f3VHk6wsDN0ZcH8uGYoXnHmaFNX3fJ8KYjBz8ir6XXA=
-github.com/emersion/go-message v0.10.6/go.mod h1:3h+HsGTCFHmk4ngJ2IV/YPhdlaOcR6hcgqM3yca9v7c=
+github.com/emersion/go-message v0.10.7 h1:wVC8P985qmmL9PGV/VlkBikVqFirxTeYv9xi+YyCprU=
+github.com/emersion/go-message v0.10.7/go.mod h1:C4jnca5HOTo4bGN9YdqNQM9sITuT3Y0K6bSUw9RklvY=
 github.com/emersion/go-sasl v0.0.0-20190520160400-47d427600317 h1:tYZxAY8nu3JJQKios9f27Sbvbkfm4XHXT476gVtszu0=
 github.com/emersion/go-sasl v0.0.0-20190520160400-47d427600317/go.mod h1:G/dpzLu16WtQpBfQ/z3LYiYJn3ZhKSGWn83fyoyQe/k=
 github.com/emersion/go-sasl v0.0.0-20190704090222-36b50694675c h1:Spm8jy+jWYG/Dn6ygbq/LBW/6M27kg59GK+FkKjexuw=
='n221' href='#n221'>221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296