summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2020-03-11 21:35:27 +0700
committerShulhan <m.shulhan@gmail.com>2020-03-11 21:35:27 +0700
commit975e4843f0f18ecff9c5ca323e84aa14d5591a88 (patch)
treefd970dd225c039f425765012e2766aabd646cd7e /go.mod
parent1bcd4ec98bb71eb01c807112448c9b3f321e401f (diff)
downloadpakakeh.go-0.13.0.tar.xz
Release share v0.13.0v0.13.0
== share v0.13.0 (2020-03-11) === Breaking changes Set the minimum Go version to 1.13. === New features * hunspell: a library to parse the Hunspell file format * parser: provide a common text parser, using delimiters === Enhancements * dns: use net.Addr for primary and fallback UDP/tCP addresses * dns: change the mark of input/output in log output * io: add function to copy file * time: add functions to get Unix time in milliseconds (int64 and string) * websocket: allow custom TLS configuration on client === Bug Fixes * dns: fix handling server without fallback forwarder * dns: check for nil DNS-over-TLS server on server's Stop
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod8
1 files changed, 4 insertions, 4 deletions
diff --git a/go.mod b/go.mod
index bd7b0200..1397c643 100644
--- a/go.mod
+++ b/go.mod
@@ -1,9 +1,9 @@
module github.com/shuLhan/share
-go 1.12
+go 1.13
require (
- golang.org/x/crypto v0.0.0-20200210222208-86ce3cb69678
- golang.org/x/net v0.0.0-20200202094626-16171245cfb2
- golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4
+ golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
+ golang.org/x/net v0.0.0-20200301022130-244492dfa37a
+ golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527
)