-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
29 lines (26 loc) · 930 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
module github.com/itsjoniur/bitlygo
go 1.19
require (
github.com/go-chi/chi/v5 v5.0.7
github.com/gomarkdown/markdown v0.0.0-20220825072242-90efaac57fb4
github.com/google/uuid v1.3.0
github.com/jackc/pgconn v1.14.3
github.com/jackc/pgx/v4 v4.18.2
github.com/sirupsen/logrus v1.9.0
github.com/unrolled/render v1.5.0
golang.org/x/crypto v0.20.0
golang.org/x/exp v0.0.0-20220827204233-334a2380cb91
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // 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
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
)