-
-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: update dependencies and more (#436)
- Loading branch information
Showing
2 changed files
with
98 additions
and
98 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,72 @@ | ||
module github.com/emitter-io/emitter | ||
|
||
go 1.20 | ||
go 1.24 | ||
|
||
toolchain go1.24.0 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.50.9 // indirect | ||
github.com/axiomhq/hyperloglog v0.0.0-20240124082744-24bca3a5b39b | ||
github.com/aws/aws-sdk-go v1.55.6 // indirect | ||
github.com/axiomhq/hyperloglog v0.2.3 | ||
github.com/coocood/freecache v1.2.4 | ||
github.com/dgraph-io/badger/v3 v3.2103.5 | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
github.com/dgryski/go-metro v0.0.0-20211217172704-adc40b04c140 // indirect | ||
github.com/dgryski/go-metro v0.0.0-20250106013310-edb8663e5e33 // indirect | ||
github.com/emitter-io/address v1.0.1 | ||
github.com/emitter-io/config v1.0.0 | ||
github.com/emitter-io/stats v1.0.3 | ||
github.com/golang/snappy v0.0.4 | ||
github.com/gorilla/websocket v1.5.3 | ||
github.com/jawher/mow.cli v1.2.0 | ||
github.com/kelindar/binary v1.0.18 | ||
github.com/kelindar/binary v1.0.19 | ||
github.com/kelindar/rate v1.0.0 | ||
github.com/kelindar/tcp v1.0.0 | ||
github.com/klauspost/compress v1.17.5 // indirect | ||
github.com/prometheus/client_golang v1.18.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/tidwall/buntdb v1.3.0 | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/prometheus/client_golang v1.20.5 | ||
github.com/stretchr/testify v1.10.0 | ||
github.com/tidwall/buntdb v1.3.2 | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
github.com/valyala/fasthttp v1.51.0 | ||
github.com/valyala/fasthttp v1.58.0 | ||
github.com/weaveworks/mesh v0.0.0-20191105120815-58dbcc3e8e63 | ||
golang.org/x/crypto v0.25.0 | ||
golang.org/x/net v0.27.0 // indirect | ||
golang.org/x/crypto v0.33.0 | ||
golang.org/x/net v0.35.0 // indirect | ||
gopkg.in/alexcesaro/statsd.v2 v2.0.0 | ||
) | ||
|
||
require github.com/eclipse/paho.mqtt.golang v1.5.0 | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/andybalholm/brotli v1.1.1 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgraph-io/ristretto v0.1.1 // indirect | ||
github.com/dgraph-io/ristretto v0.2.0 // indirect | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/glog v1.2.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/flatbuffers v23.5.26+incompatible // indirect | ||
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/flatbuffers v25.2.10+incompatible // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/kamstrup/intmap v0.5.1 // indirect | ||
github.com/kelindar/process v0.0.0-20170730150328-69a29e249ec3 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.46.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/stretchr/objx v0.5.1 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.62.0 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/tidwall/btree v1.7.0 // indirect | ||
github.com/tidwall/gjson v1.17.0 // indirect | ||
github.com/tidwall/gjson v1.18.0 // indirect | ||
github.com/tidwall/grect v0.1.4 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/rtred v0.1.2 // indirect | ||
github.com/tidwall/tinyqueue v0.1.1 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
golang.org/x/sync v0.11.0 // indirect | ||
golang.org/x/sys v0.30.0 // indirect | ||
golang.org/x/text v0.22.0 // indirect | ||
google.golang.org/protobuf v1.36.5 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.