Skip to content

Commit

Permalink
Update compression package (#219)
Browse files Browse the repository at this point in the history
Update the compression package to latest version.

Use the replacement packages throughout for better performance.
  • Loading branch information
klauspost committed Mar 12, 2020
1 parent 44285f7 commit b44e6c6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions go.mod
Expand Up @@ -6,8 +6,8 @@ require (
github.com/andybalholm/brotli v1.0.0
github.com/dsnet/compress v0.0.1
github.com/golang/snappy v0.0.1
github.com/klauspost/compress v1.9.2
github.com/klauspost/pgzip v1.2.1
github.com/klauspost/compress v1.10.3
github.com/klauspost/pgzip v1.2.2
github.com/nwaples/rardecode v1.0.0
github.com/pierrec/lz4/v3 v3.0.1
github.com/ulikunitz/xz v0.5.6
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Expand Up @@ -16,12 +16,12 @@ github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY=
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
github.com/klauspost/compress v1.4.1/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.9.2 h1:LfVyl+ZlLlLDeQ/d2AqfGIIH4qEDu0Ed2S5GyhCWIWY=
github.com/klauspost/compress v1.9.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.10.3 h1:OP96hzwJVBIHYU52pVTI6CczrxPvrGfgqF9N5eTO0Q8=
github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs=
github.com/klauspost/cpuid v1.2.0 h1:NMpwD2G9JSFOE1/TJjGSo5zG7Yb2bTe7eq1jH+irmeE=
github.com/klauspost/cpuid v1.2.0/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
github.com/klauspost/pgzip v1.2.1 h1:oIPZROsWuPHpOdMVWLuJZXwgjhrW8r1yEX8UqMyeNHM=
github.com/klauspost/pgzip v1.2.1/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs=
github.com/klauspost/pgzip v1.2.2 h1:8d4I0LDiieuGngsqlqOih9ker/NS0LX4V0i+EhiFWg0=
github.com/klauspost/pgzip v1.2.2/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs=
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
Expand Down
4 changes: 2 additions & 2 deletions gz.go
@@ -1,12 +1,12 @@
package archiver

import (
"compress/gzip"
"fmt"
"io"
"path/filepath"

pgzip "github.com/klauspost/pgzip"
"github.com/klauspost/compress/gzip"
"github.com/klauspost/pgzip"
)

// Gz facilitates gzip compression.
Expand Down
4 changes: 2 additions & 2 deletions targz.go
@@ -1,12 +1,12 @@
package archiver

import (
"compress/gzip"
"fmt"
"io"
"strings"

pgzip "github.com/klauspost/pgzip"
"github.com/klauspost/compress/gzip"
"github.com/klauspost/pgzip"
)

// TarGz facilitates gzip compression
Expand Down

0 comments on commit b44e6c6

Please sign in to comment.