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

46 lines
1.6 KiB
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
2023-06-13 02:22:05 +03:00
modernc.org/sqlite v1.23.1
2023-06-07 18:46:19 +03:00
)
require (
2023-06-13 02:22:05 +03:00
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.3.0 // indirect
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-13 02:22:05 +03:00
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // 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-13 02:22:05 +03:00
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // 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-13 02:22:05 +03:00
golang.org/x/mod v0.10.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
2023-06-13 02:22:05 +03:00
golang.org/x/tools v0.9.1 // indirect
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.22.5 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.1 // indirect
2020-08-22 23:27:37 +03:00
)