2023-03-31 20:08:38 +03:00
|
|
|
module git.ukamnya.ru/stulyaganov/RestApiv2
|
2022-12-06 23:50:32 +03:00
|
|
|
|
|
|
|
go 1.19
|
2022-12-07 21:29:01 +03:00
|
|
|
|
|
|
|
require github.com/sirupsen/logrus v1.9.0
|
|
|
|
|
2022-12-31 01:43:30 +03:00
|
|
|
require (
|
2023-05-02 11:02:06 +03:00
|
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
2023-04-14 17:35:25 +03:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.0.0-rc.2 // indirect
|
2023-05-02 11:02:06 +03:00
|
|
|
github.com/gorilla/handlers v1.5.1 // indirect
|
2023-03-31 14:07:00 +03:00
|
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
|
|
github.com/jackc/pgconn v1.14.0 // indirect
|
|
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
2022-12-31 01:43:30 +03:00
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
2023-03-31 14:07:00 +03:00
|
|
|
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
|
|
github.com/jackc/pgtype v1.14.0 // indirect
|
|
|
|
github.com/jackc/puddle v1.3.0 // indirect
|
|
|
|
github.com/jackc/puddle/v2 v2.2.0 // indirect
|
2023-05-02 11:02:06 +03:00
|
|
|
github.com/rs/cors v1.9.0 // indirect
|
2023-03-31 14:07:00 +03:00
|
|
|
golang.org/x/sync v0.1.0 // indirect
|
2022-12-31 01:43:30 +03:00
|
|
|
)
|
|
|
|
|
2022-12-07 21:29:01 +03:00
|
|
|
require (
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
2022-12-31 01:43:30 +03:00
|
|
|
github.com/jackc/pgx v3.6.2+incompatible // indirect
|
2023-03-31 14:07:00 +03:00
|
|
|
github.com/jackc/pgx/v4 v4.18.1
|
|
|
|
github.com/jackc/pgx/v5 v5.3.1
|
2023-01-03 19:27:10 +03:00
|
|
|
github.com/joho/godotenv v1.4.0
|
2022-12-12 20:34:00 +03:00
|
|
|
github.com/lib/pq v1.10.7 // indirect
|
2022-12-31 01:43:30 +03:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2022-12-07 21:29:01 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/stretchr/objx v0.5.0 // indirect
|
|
|
|
github.com/stretchr/testify v1.8.1 // indirect
|
2023-04-14 17:35:25 +03:00
|
|
|
golang.org/x/crypto v0.8.0 // indirect
|
|
|
|
golang.org/x/sys v0.7.0 // indirect
|
|
|
|
golang.org/x/text v0.9.0 // indirect
|
2022-12-07 21:29:01 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
)
|