databag/net/server/go.mod

31 lines
893 B
Modula-2
Raw Normal View History

2022-01-11 06:20:32 +00:00
module databag
go 1.17
2022-01-11 18:28:00 +00:00
require (
2024-04-04 16:32:10 +00:00
github.com/google/uuid v1.6.0
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/gorilla/websocket v1.5.1
github.com/kr/pretty v0.3.1
github.com/stretchr/testify v1.7.0
github.com/theckman/go-securerandom v0.1.1
github.com/valyala/fastjson v1.6.4
golang.org/x/crypto v0.21.0
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.9
)
require (
2022-01-17 22:25:39 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2024-04-04 16:32:10 +00:00
github.com/felixge/httpsnoop v1.0.4 // indirect
2022-01-11 18:28:00 +00:00
github.com/jinzhu/inflection v1.0.0 // indirect
2023-01-27 06:59:58 +00:00
github.com/jinzhu/now v1.1.5 // indirect
2022-01-17 05:11:24 +00:00
github.com/kr/text v0.2.0 // indirect
2024-04-04 16:32:10 +00:00
github.com/mattn/go-sqlite3 v1.14.22 // indirect
2022-01-17 22:25:39 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-04-04 16:32:10 +00:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
golang.org/x/net v0.23.0 // indirect
2022-01-17 22:25:39 +00:00
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
2022-01-11 18:28:00 +00:00
)