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)
This commit is contained in:
Robin Burchell 2015-07-02 14:10:19 +02:00
parent 952a62aa39
commit 6ad97f7e5d
3 changed files with 3 additions and 3 deletions

View File

@ -64,6 +64,6 @@ ergonomadic run -conf ergonomadic.conf
* Niels Freier, added WebSocket support, <https://github.com/stumpyfr>
* 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

View File

@ -1,7 +1,7 @@
package irc
import (
"code.google.com/p/go.crypto/bcrypt"
"golang.org/x/crypto/bcrypt"
"encoding/base64"
"errors"
)

View File

@ -1,7 +1,7 @@
package irc
import (
"code.google.com/p/go.text/unicode/norm"
"golang.org/x/text/unicode/norm"
"regexp"
"strings"
)