-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (27 loc) · 917 Bytes
/
go.mod
File metadata and controls
30 lines (27 loc) · 917 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
27
28
29
30
module github.com/baely/officetracker
go 1.25.0
require (
github.com/coreos/go-oidc/v3 v3.18.0
github.com/go-chi/chi/v5 v5.2.5
github.com/golang-jwt/jwt/v5 v5.3.1
github.com/gorilla/schema v1.4.1
github.com/joho/godotenv v1.5.1
github.com/jung-kurt/gofpdf v1.16.2
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.12.3
github.com/mattn/go-sqlite3 v1.14.44
github.com/modelcontextprotocol/go-sdk v1.6.0
github.com/redis/go-redis/v9 v9.19.0
golang.org/x/oauth2 v0.36.0
golang.org/x/text v0.36.0
)
require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/google/jsonschema-go v0.4.3 // indirect
github.com/segmentio/asm v1.1.3 // indirect
github.com/segmentio/encoding v0.5.4 // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/sys v0.41.0 // indirect
)