Dependency update, new golang.org/x package names
This commit is contained in:
@@ -26,10 +26,10 @@ import (
|
||||
"sort"
|
||||
"strconv"
|
||||
|
||||
"code.google.com/p/go.crypto/bcrypt"
|
||||
"github.com/calmh/logger"
|
||||
"github.com/syncthing/syncthing/internal/osutil"
|
||||
"github.com/syncthing/syncthing/internal/protocol"
|
||||
"golang.org/x/crypto/bcrypt"
|
||||
)
|
||||
|
||||
var l = logger.DefaultLogger
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
package osutil
|
||||
|
||||
import "code.google.com/p/go.text/unicode/norm"
|
||||
import "golang.org/x/text/unicode/norm"
|
||||
|
||||
func NormalizedFilename(s string) string {
|
||||
return norm.NFC.String(s)
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
package osutil
|
||||
|
||||
import "code.google.com/p/go.text/unicode/norm"
|
||||
import "golang.org/x/text/unicode/norm"
|
||||
|
||||
func NormalizedFilename(s string) string {
|
||||
return norm.NFC.String(s)
|
||||
|
||||
@@ -18,7 +18,7 @@ package osutil
|
||||
import (
|
||||
"path/filepath"
|
||||
|
||||
"code.google.com/p/go.text/unicode/norm"
|
||||
"golang.org/x/text/unicode/norm"
|
||||
)
|
||||
|
||||
func NormalizedFilename(s string) string {
|
||||
|
||||
@@ -19,7 +19,7 @@ package protocol
|
||||
|
||||
// Darwin uses NFD normalization
|
||||
|
||||
import "code.google.com/p/go.text/unicode/norm"
|
||||
import "golang.org/x/text/unicode/norm"
|
||||
|
||||
type nativeModel struct {
|
||||
next Model
|
||||
|
||||
@@ -18,7 +18,7 @@ package protocol
|
||||
import (
|
||||
"path/filepath"
|
||||
|
||||
"code.google.com/p/go.text/unicode/norm"
|
||||
"golang.org/x/text/unicode/norm"
|
||||
)
|
||||
|
||||
type wireFormatConnection struct {
|
||||
|
||||
@@ -22,12 +22,11 @@ import (
|
||||
"runtime"
|
||||
"strings"
|
||||
|
||||
"code.google.com/p/go.text/unicode/norm"
|
||||
|
||||
"github.com/syncthing/syncthing/internal/ignore"
|
||||
"github.com/syncthing/syncthing/internal/lamport"
|
||||
"github.com/syncthing/syncthing/internal/protocol"
|
||||
"github.com/syncthing/syncthing/internal/symlinks"
|
||||
"golang.org/x/text/unicode/norm"
|
||||
)
|
||||
|
||||
type Walker struct {
|
||||
|
||||
Reference in New Issue
Block a user