-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 703 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 703 Bytes
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
module github.com/beevk/go-todo
go 1.24.2
require (
github.com/go-chi/chi/v5 v5.2.3
github.com/go-pg/pg/v10 v10.15.0
github.com/lib/pq v1.10.9
)
require (
github.com/golang-jwt/jwt/v5 v5.3.0
golang.org/x/crypto v0.41.0
)
require (
github.com/go-pg/zerochecker v0.2.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
github.com/vmihailenco/bufpool v0.1.11 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser v0.1.2 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
golang.org/x/sys v0.35.0 // indirect
mellium.im/sasl v0.3.2 // indirect
)