-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d0a24c
commit 788e4a2
Showing
5 changed files
with
268 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ test: | |
go test -v -race ./... | ||
|
||
update: | ||
go get -u ./... | ||
go get -u -t ./... | ||
|
||
tidy: | ||
go mod tidy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,32 @@ | ||
module github.com/goraz/onion | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/bgentry/speakeasy v0.1.0 // indirect | ||
github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa // indirect | ||
github.com/coreos/etcd v3.3.20+incompatible // indirect | ||
github.com/coreos/etcd v3.3.25+incompatible // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7 // indirect | ||
github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf // indirect | ||
github.com/creack/pty v1.1.7 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4 // indirect | ||
github.com/fatih/color v1.7.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903 // indirect | ||
github.com/golang/protobuf v1.3.2 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.0 | ||
github.com/google/uuid v1.0.0 // indirect | ||
github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20210822113901-9ebd50d28389 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jonboulle/clockwork v0.1.0 // indirect | ||
github.com/json-iterator/go v1.1.9 // indirect | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/mattn/go-colorable v0.0.9 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/mattn/go-runewidth v0.0.2 // indirect | ||
github.com/mitchellh/mapstructure v1.3.0 | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/magiconair/properties v1.8.5 | ||
github.com/mitchellh/mapstructure v1.4.1 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/ogier/pflag v0.0.1 | ||
github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5 // indirect | ||
github.com/pelletier/go-toml v1.8.0 | ||
github.com/pelletier/go-toml v1.9.3 | ||
github.com/prometheus/client_golang v1.0.0 // indirect | ||
github.com/skarademir/naturalsort v0.0.0-20150715044055-69a5d87bef62 | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/soheilhy/cmux v0.1.4 // indirect | ||
github.com/spf13/cobra v0.0.3 // indirect | ||
github.com/spf13/pflag v1.0.1 // indirect | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8 // indirect | ||
github.com/urfave/cli v1.20.0 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
go.etcd.io/bbolt v1.3.4 // indirect | ||
go.etcd.io/etcd v3.3.20+incompatible | ||
go.uber.org/atomic v1.3.2 // indirect | ||
go.uber.org/multierr v1.1.0 // indirect | ||
go.uber.org/zap v1.10.0 // indirect | ||
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 | ||
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect | ||
golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9 // indirect | ||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect | ||
go.etcd.io/etcd v3.3.25+incompatible | ||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 | ||
golang.org/x/sys v0.0.0-20210820121016-41cdb8703e55 // indirect | ||
google.golang.org/grpc v1.23.1 // indirect | ||
gopkg.in/cheggaaa/pb.v1 v1.0.25 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
sigs.k8s.io/yaml v1.1.0 // indirect | ||
) |
Oops, something went wrong.