mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
Merge pull request #17 from rburchell/master
irc: Switch to golang.org versions, not google code versions of dependencies
This commit is contained in:
commit
efce628c87
@ -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
|
||||||
|
@ -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"
|
||||||
)
|
)
|
||||||
|
@ -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"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user