aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index daf3931..4a8a3de 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/Necoro/feed2imap-go
go 1.15
require (
- github.com/PuerkitoBio/goquery v1.5.1
+ github.com/PuerkitoBio/goquery v1.6.0
github.com/antonmedv/expr v1.8.8
github.com/emersion/go-imap v1.0.6
github.com/emersion/go-imap-uidplus v0.0.0-20200503180755-e75854c361e9
='5' class='logmsg'> 2016-02-06passmenu: group commandsJason A. Donenfeld1-1/+1 2016-02-05passmenu: Use faster built-inJason A. Donenfeld1-1/+1 2016-02-05show: better clip error messageJason A. Donenfeld1-3/+3 2016-02-05show: allow selecting which clip lineJason A. Donenfeld2-9/+10 2016-02-05generate: have a default length of 25Jason A. Donenfeld2-6/+12 Folks are lazy and don't want to type very much, so they'd like to have a default password length to generate that can be configured via environment variables per usual. I'm making the default 25. If the user forbids the use of symbols, pwgen will use a-zA-Z0-9, ensuring that at least one A-Z and at least one 0-9 is used. We want to have a password of at least 128-bits, so factoring in the issue with "at least one of this character type", 25 gets us there squarely. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>