-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
31 lines (26 loc) · 956 Bytes
/
go.mod
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
module github.com/spec-tacles/gateway
go 1.21
toolchain go1.22.0
require (
github.com/BurntSushi/toml v1.3.2
github.com/gorilla/websocket v1.5.1
github.com/mediocregopher/radix/v4 v4.1.4
github.com/prometheus/client_golang v1.19.1
github.com/spec-tacles/go v0.0.0-20240519052238-4bb677db055a
github.com/valyala/gozstd v1.21.1
)
require golang.org/x/net v0.25.0 // indirect
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/bwmarrin/snowflake v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.53.0 // indirect
github.com/prometheus/procfs v0.15.0 // indirect
github.com/rabbitmq/amqp091-go v1.10.0
github.com/tilinna/clock v1.1.0 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
)