瀏覽代碼

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)
tags/v0.1.0
Robin Burchell 9 年之前
父節點
當前提交
6ad97f7e5d
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1
    1
      README.md
  2. 1
    1
      irc/password.go
  3. 1
    1
      irc/strings.go

+ 1
- 1
README.md 查看文件

@@ -64,6 +64,6 @@ ergonomadic run -conf ergonomadic.conf
64 64
 * Niels Freier, added WebSocket support, <https://github.com/stumpyfr>
65 65
 * apologies to anyone I forgot.
66 66
 
67
-[go-crypto]: http://godoc.org/code.google.com/p/go.crypto
67
+[go-crypto]: https://godoc.org/golang.org/x/crypto
68 68
 [go-sqlite]: https://github.com/mattn/go-sqlite3
69 69
 [proxy-proto]: http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt

+ 1
- 1
irc/password.go 查看文件

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

+ 1
- 1
irc/strings.go 查看文件

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

Loading…
取消
儲存