-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (28 loc) · 1.04 KB
/
go.mod
File metadata and controls
32 lines (28 loc) · 1.04 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
module github.com/holdno/firetower
go 1.22
require (
github.com/gorilla/websocket v1.5.0
github.com/holdno/snowFlakeByGo v1.0.0
github.com/json-iterator/go v1.1.12
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.4
)
require (
github.com/avast/retry-go/v4 v4.6.0
github.com/go-redis/redis/v9 v9.0.0-beta.2
github.com/nats-io/nats.go v1.16.0
github.com/orcaman/concurrent-map/v2 v2.0.1
github.com/vmihailenco/msgpack/v5 v5.3.5
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/nats-io/nats-server/v2 v2.8.4 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
google.golang.org/protobuf v1.27.1 // indirect
)