Skip to content

Commit

Permalink
Merge pull request #4 from adalberht/encoder-compression
Browse files Browse the repository at this point in the history
Refactor Encode method to different file and add encoder's compression options
  • Loading branch information
Albertus Angga Raharja committed Jul 12, 2019
2 parents f1c4d74 + 164bfd9 commit 1426ed3
Show file tree
Hide file tree
Showing 6 changed files with 339 additions and 53 deletions.
43 changes: 34 additions & 9 deletions go.mod
Expand Up @@ -3,28 +3,53 @@ module github.com/gojek/darkroom
go 1.12

require (
cloud.google.com/go v0.41.0 // indirect
github.com/OneOfOne/xxhash v1.2.5 // indirect
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
github.com/anthonynsimon/bild v0.10.1-0.20190710205720-eee9188e4370
github.com/aws/aws-sdk-go v1.20.0
github.com/axw/gocov v1.0.0 // indirect
github.com/aws/aws-sdk-go v1.20.19
github.com/cactus/go-statsd-client/statsd v0.0.0-20190501063751-9a7692639588
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.13+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a // indirect
github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b // indirect
github.com/go-kit/kit v0.9.0 // indirect
github.com/gojektech/heimdall v5.0.2+incompatible
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
github.com/gorilla/mux v1.7.2
github.com/magiconair/properties v1.8.0
github.com/mattn/goveralls v0.0.2 // indirect
github.com/gorilla/mux v1.7.3
github.com/grpc-ecosystem/grpc-gateway v1.9.4 // indirect
github.com/kisielk/errcheck v1.2.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pty v1.1.8 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/pkg/errors v0.8.1
github.com/pkg/profile v1.3.0
github.com/prometheus/common v0.6.0 // indirect
github.com/prometheus/procfs v0.0.3 // indirect
github.com/prometheus/tsdb v0.9.1 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/smartystreets/assertions v1.0.0 // indirect
github.com/smartystreets/goconvey v0.0.0-20190710185942-9d28bd7c0945 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.3.0
github.com/ugorji/go v1.1.7 // indirect
github.com/urfave/cli v1.20.0
go.etcd.io/bbolt v1.3.3 // indirect
go.uber.org/zap v1.10.0
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect
golang.org/x/exp v0.0.0-20190627132806-fd42eb6b336f // indirect
golang.org/x/mobile v0.0.0-20190711165009-e47acb2ca7f9 // indirect
golang.org/x/net v0.0.0-20190628185345-da137c7871d7 // indirect
golang.org/x/sys v0.0.0-20190710143415-6ec70d6a5542 // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20190710184609-286818132824 // indirect
golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7 // indirect
golang.org/x/tools v0.0.0-20190711191110-9a621aea19f8 // indirect
google.golang.org/genproto v0.0.0-20190708153700-3bdd9d9f5532 // indirect
google.golang.org/grpc v1.22.0 // indirect
)

0 comments on commit 1426ed3

Please sign in to comment.