From 6ad97f7e5d709496640f13a910a68c291aaf2725 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Thu, 2 Jul 2015 14:10:19 +0200 Subject: [PATCH] irc: Switch to golang.org versions, not google code versions of dependencies. This has a few advantages: * the google code versions are no longer maintained * the google code versions are using mercurial (which I don't have installed) --- README.md | 2 +- irc/password.go | 2 +- irc/strings.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c34fc959..1fc09606 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,6 @@ ergonomadic run -conf ergonomadic.conf * Niels Freier, added WebSocket support, * apologies to anyone I forgot. -[go-crypto]: http://godoc.org/code.google.com/p/go.crypto +[go-crypto]: https://godoc.org/golang.org/x/crypto [go-sqlite]: https://github.com/mattn/go-sqlite3 [proxy-proto]: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt diff --git a/irc/password.go b/irc/password.go index 1426c402..a814b4a4 100644 --- a/irc/password.go +++ b/irc/password.go @@ -1,7 +1,7 @@ package irc import ( - "code.google.com/p/go.crypto/bcrypt" + "golang.org/x/crypto/bcrypt" "encoding/base64" "errors" ) diff --git a/irc/strings.go b/irc/strings.go index 98304b1b..7b26a129 100644 --- a/irc/strings.go +++ b/irc/strings.go @@ -1,7 +1,7 @@ package irc import ( - "code.google.com/p/go.text/unicode/norm" + "golang.org/x/text/unicode/norm" "regexp" "strings" )