Merge pull request #17 from rburchell/master

irc: Switch to golang.org versions, not google code versions of dependencies
This commit is contained in:
Edmund Huber 2015-07-04 16:04:58 -07:00
commit efce628c87
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> * Niels Freier, added WebSocket support, <https://github.com/stumpyfr>
* apologies to anyone I forgot. * 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 [go-sqlite]: https://github.com/mattn/go-sqlite3
[proxy-proto]: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt [proxy-proto]: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt

View File

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

View File

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