-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
33 lines (29 loc) · 994 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
32
33
module financial-chat-api
go 1.22.3
require (
github.com/go-chi/chi/v5 v5.0.12
github.com/go-chi/httplog/v2 v2.0.11
github.com/rabbitmq/amqp091-go v1.10.0
golang.org/x/crypto v0.23.0
nhooyr.io/websocket v1.8.11
)
require (
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
github.com/go-chi/cors v1.2.1 // indirect
github.com/pkg/errors v0.8.0 // indirect
golang.org/x/sys v0.20.0 // indirect
)
require (
github.com/aead/chacha20poly1305 v0.0.0-20201124145622-1a5aba2a8b29
github.com/google/uuid v1.6.0
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.6.0
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/joho/godotenv v1.5.1
github.com/o1egl/paseto v1.0.0
github.com/tomiok/webh v0.1.3
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.15.0 // indirect
)