1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00
pasty/go.mod

30 lines
960 B
Modula-2
Raw Normal View History

2021-04-15 20:26:17 +03:00
module github.com/lus/pasty
2020-08-22 23:13:43 +03:00
2023-06-07 18:46:19 +03:00
go 1.20
2020-08-22 23:27:37 +03:00
require (
2023-06-07 20:51:54 +03:00
github.com/alexedwards/argon2id v0.0.0-20230305115115-4b3c3280a736
github.com/go-chi/chi/v5 v5.0.8
2023-06-07 19:25:28 +03:00
github.com/golang-migrate/migrate/v4 v4.16.1
github.com/jackc/pgx/v5 v5.3.1
2023-06-07 19:27:23 +03:00
github.com/joho/godotenv v1.5.1
2023-06-07 18:46:19 +03:00
github.com/kelseyhightower/envconfig v1.4.0
github.com/rs/zerolog v1.29.1
)
require (
2023-06-07 19:25:28 +03:00
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
2023-06-07 18:46:19 +03:00
github.com/jackc/pgpassfile v1.0.0 // indirect
2023-06-07 19:25:28 +03:00
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/puddle/v2 v2.2.0 // indirect
2023-06-07 19:27:23 +03:00
github.com/lib/pq v1.10.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
2023-06-07 19:25:28 +03:00
go.uber.org/atomic v1.11.0 // indirect
2023-06-07 19:27:23 +03:00
golang.org/x/crypto v0.9.0 // indirect
2023-06-07 19:25:28 +03:00
golang.org/x/sync v0.2.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
2020-08-22 23:27:37 +03:00
)