-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
46 lines (42 loc) · 1.56 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module github.com/initialed85/djangolang
go 1.23.1
require (
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.7.1
github.com/stretchr/testify v1.9.0
)
require (
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
go.mongodb.org/mongo-driver v1.17.0 // indirect
golang.org/x/sync v0.8.0 // indirect
gorm.io/gorm v1.25.12 // indirect
)
require (
github.com/aymericbeaumet/go-tsvector v0.0.0-20210303220322-b3114343d43a
github.com/chanced/caps v1.0.2
github.com/cridenour/go-postgis v1.0.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gertd/go-pluralize v0.2.1
github.com/go-chi/chi/v5 v5.1.0
github.com/gomodule/redigo v1.9.2
github.com/gorilla/websocket v1.5.3
github.com/initialed85/structmeta v0.0.0-20240923104310-4adf4f5a7354
github.com/jackc/pglogrepl v0.0.0-20240307033717-828fbfe908e9
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgtype v1.14.3
github.com/json-iterator/go v1.1.12
github.com/paulmach/orb v0.11.1
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/twpayne/go-geom v1.5.7
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
golang.org/x/text v0.18.0 // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)