generated from Yandex-Practicum/go-musthave-shortener-tpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
31 lines (27 loc) · 902 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/11Petrov/urlshortener
go 1.21.0
require (
github.com/go-chi/chi v1.5.5
github.com/google/uuid v1.3.1
github.com/jackc/pgx/v5 v5.4.3
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.26.0
)
require (
github.com/jackc/puddle/v2 v2.2.1 // indirect
golang.org/x/sync v0.4.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/pressly/goose/v3 v3.15.1
github.com/rogpeppe/go-internal v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)