Skip to content

Commit

Permalink
Add debug logging during panics. Updated dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRockettek committed Feb 17, 2024
1 parent 6e1500f commit eff5f1a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 279 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20 AS build_base
FROM golang:1.22 AS build_base

# WORKDIR /go/brotli-cgo

Expand Down
32 changes: 6 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module github.com/WelcomerTeam/Sandwich-Daemon

go 1.20
go 1.22

require (
github.com/WelcomerTeam/Discord v0.0.0-20240210213807-c14998fabe2e
github.com/WelcomerTeam/Discord v0.0.0-20240216234329-4788ea09b0da
github.com/WelcomerTeam/RealRock v0.0.0-20220122233305-f97b8c8cbc15
github.com/WelcomerTeam/czlib v0.0.0-20210907121728-d7ed7721c904
github.com/fasthttp/router v1.4.22
github.com/fasthttp/session/v2 v2.5.3
github.com/go-redis/redis/v8 v8.11.5
github.com/joho/godotenv v1.5.1
github.com/json-iterator/go v1.1.12
github.com/nats-io/nats.go v1.33.0
github.com/nats-io/nats.go v1.33.1
github.com/nats-io/stan.go v0.10.4
github.com/prometheus/client_golang v1.18.0
github.com/rs/zerolog v1.32.0
Expand All @@ -31,53 +31,33 @@ require (

require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/armon/go-metrics v0.4.1 // 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/fatih/color v1.16.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/hashicorp/go-hclog v1.6.2 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-msgpack/v2 v2.1.1 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/raft v1.6.0 // indirect
github.com/klauspost/compress v1.17.6 // indirect
github.com/lib/pq v1.10.9 // 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.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/minio/highwayhash v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nats-io/jwt/v2 v2.5.3 // indirect
github.com/nats-io/nats-server/v2 v2.10.10 // indirect
github.com/nats-io/nats-server/v2 v2.10.11 // indirect
github.com/nats-io/nats-streaming-server v0.25.6 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/client_model v0.6.0 // indirect
github.com/prometheus/common v0.47.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/tinylib/msgp v1.1.9 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.etcd.io/bbolt v1.3.8 // indirect
go.uber.org/automaxprocs v1.5.3 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/mod v0.13.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.14.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
)
Loading

0 comments on commit eff5f1a

Please sign in to comment.