-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from brave/dev
Release 2023-10-25
- Loading branch information
Showing
4 changed files
with
69 additions
and
26 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 |
---|---|---|
@@ -1,46 +1,47 @@ | ||
module github.com/brave/go-sync | ||
|
||
go 1.18 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.45.19 | ||
github.com/brave-intl/bat-go/libs v0.0.0-20230913115141-8b4fe85da72c | ||
github.com/getsentry/sentry-go v0.24.1 | ||
github.com/aws/aws-sdk-go v1.46.2 | ||
github.com/brave-intl/bat-go/libs v0.0.0-20231020145457-cc9860c87bae | ||
github.com/getsentry/sentry-go v0.25.0 | ||
github.com/go-chi/chi/v5 v5.0.10 | ||
github.com/prometheus/client_golang v1.16.0 | ||
github.com/redis/go-redis/v9 v9.1.0 | ||
github.com/rs/zerolog v1.30.0 | ||
github.com/prometheus/client_golang v1.17.0 | ||
github.com/redis/go-redis/v9 v9.2.1 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/stretchr/testify v1.8.4 | ||
google.golang.org/protobuf v1.31.0 | ||
) | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/go-chi/chi v4.1.2+incompatible // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gomodule/redigo v2.0.0+incompatible // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/golang-lru v1.0.2 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/rs/xid v1.5.0 // indirect | ||
github.com/shengdoushi/base58 v1.0.0 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/objx v0.5.1 // indirect | ||
github.com/throttled/throttled v2.2.5+incompatible // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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