forked from basecamp/thruster
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
60 lines (56 loc) · 2.49 KB
/
go.mod
File metadata and controls
60 lines (56 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module github.com/basecamp/thruster
go 1.26.2
replace github.com/anycable/anycable-go => github.com/anycable/anycable v1.6.13
require (
github.com/anycable/anycable-go v1.6.13
github.com/klauspost/compress v1.18.5
github.com/stretchr/testify v1.11.1
golang.org/x/crypto v0.50.0
golang.org/x/net v0.53.0
)
require (
github.com/BurntSushi/toml v1.6.0 // indirect
github.com/antithesishq/antithesis-sdk-go v0.7.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fullstorydev/grpchan v1.1.2 // indirect
github.com/go-chi/chi/v5 v5.2.5 // indirect
github.com/goccy/go-json v0.10.6 // indirect
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-tpm v0.9.8 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/hofstadter-io/cinful v1.0.0 // indirect
github.com/jhump/protoreflect v1.18.0 // indirect
github.com/jhump/protoreflect/v2 v2.0.0-beta.2 // indirect
github.com/joomcode/errorx v1.2.0 // indirect
github.com/lmittmann/tint v1.1.3 // indirect
github.com/matoous/go-nanoid v1.5.1 // indirect
github.com/mattn/go-isatty v0.0.21 // indirect
github.com/minio/highwayhash v1.0.4 // indirect
github.com/mitchellh/go-mruby v0.0.0-20200315023956-207cedc21542 // indirect
github.com/nats-io/jwt/v2 v2.8.1 // indirect
github.com/nats-io/nats-server/v2 v2.12.7 // indirect
github.com/nats-io/nats.go v1.51.0 // indirect
github.com/nats-io/nkeys v0.4.15 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/posthog/posthog-go v1.12.1 // indirect
github.com/redis/rueidis v1.0.74 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/smira/go-statsd v1.3.4 // indirect
github.com/sony/gobreaker v1.0.0 // indirect
github.com/urfave/cli/v2 v2.27.7 // indirect
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
go.uber.org/automaxprocs v1.6.0 // indirect
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0 // indirect
golang.org/x/time v0.15.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260420184626-e10c466a9529 // indirect
google.golang.org/grpc v1.80.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)