-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependencies and remove unnecessary external dependency for exam…
…ple. (#212) - bumps some library dependencies to resolve some CVE's. - removes external dependency in example code - makes some linters a bit happier - bumps testing matrix to more modern Go compilers versions: 1.17, 1.18, 1.19
- Loading branch information
1 parent
f916476
commit a58f3b6
Showing
14 changed files
with
207 additions
and
287 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,44 @@ | ||
module github.com/openzipkin/zipkin-go | ||
|
||
require ( | ||
github.com/Shopify/sarama v1.30.0 | ||
github.com/Shopify/sarama v1.37.2 | ||
github.com/onsi/ginkgo v1.16.5 | ||
github.com/onsi/gomega v1.16.0 | ||
github.com/rabbitmq/amqp091-go v1.1.0 | ||
google.golang.org/grpc v1.41.0 | ||
google.golang.org/protobuf v1.27.1 | ||
github.com/rabbitmq/amqp091-go v1.5.0 | ||
google.golang.org/grpc v1.50.0 | ||
google.golang.org/protobuf v1.28.1 | ||
) | ||
|
||
go 1.14 | ||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/eapache/go-resiliency v1.3.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/go-cmp v0.5.8 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-uuid v1.0.3 // indirect | ||
github.com/jcmturner/aescts/v2 v2.0.0 // indirect | ||
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect | ||
github.com/jcmturner/gofork v1.7.6 // indirect | ||
github.com/jcmturner/gokrb5/v8 v8.4.3 // indirect | ||
github.com/jcmturner/rpc/v2 v2.0.3 // indirect | ||
github.com/klauspost/compress v1.15.11 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
golang.org/x/crypto v0.0.0-20221010152910-d6f0a8c073c2 // indirect | ||
golang.org/x/net v0.0.0-20221004154528-8021a29435af // indirect | ||
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 // indirect | ||
golang.org/x/text v0.3.8 // indirect | ||
google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) | ||
|
||
go 1.18 |
Oops, something went wrong.