diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2021-08-17 01:32:52 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-17 01:32:52 -0700 |
| commit | d2c8f01671c6dd12c8984c2eb64e1a89d0192352 (patch) | |
| tree | 880a432e9bf2863099703ae612e2adecc6422d20 | |
| parent | d24ad925132667313e8d1810c1d3641b381ecbc6 (diff) | |
| parent | 865b06b7fe2fe44ffc04cdec0af07aa2a24e7733 (diff) | |
| download | seaweedfs-d2c8f01671c6dd12c8984c2eb64e1a89d0192352.tar.xz seaweedfs-d2c8f01671c6dd12c8984c2eb64e1a89d0192352.zip | |
Merge pull request #2267 from kmlebedev/IEEEoptimizations
The IEEE assembler optimizations has been submitted and will be part …
| -rw-r--r-- | go.mod | 3 | ||||
| -rw-r--r-- | weed/storage/needle/crc.go | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -45,7 +45,6 @@ require ( github.com/karlseguin/ccache/v2 v2.0.7 github.com/klauspost/compress v1.10.9 // indirect github.com/klauspost/cpuid v1.2.1 // indirect - github.com/klauspost/crc32 v1.2.0 github.com/klauspost/reedsolomon v1.9.2 github.com/kurin/blazer v0.5.3 github.com/lib/pq v1.10.0 @@ -82,7 +81,7 @@ require ( gocloud.dev v0.20.0 gocloud.dev/pubsub/natspubsub v0.20.0 gocloud.dev/pubsub/rabbitpubsub v0.20.0 - golang.org/x/image v0.0.0-20200119044424-58c23975cae1 // indirect + golang.org/x/image v0.0.0-20200119044424-58c23975cae1 golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78 diff --git a/weed/storage/needle/crc.go b/weed/storage/needle/crc.go index 4476631c2..b7d3edd83 100644 --- a/weed/storage/needle/crc.go +++ b/weed/storage/needle/crc.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/klauspost/crc32" + "hash/crc32" "github.com/chrislusf/seaweedfs/weed/util" ) |
