mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
35 lines
1.1 KiB
Modula-2
35 lines
1.1 KiB
Modula-2
module databag
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
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.24.0
|
|
gorm.io/driver/sqlite v1.5.5
|
|
gorm.io/gorm v1.25.9
|
|
)
|
|
|
|
require (
|
|
github.com/SherClockHolmes/webpush-go v1.3.0 // indirect
|
|
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.22 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/pquerna/otp v1.4.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
golang.org/x/net v0.23.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|