cabinet/go.mod

21 lines
663 B
Modula-2
Raw Permalink Normal View History

2019-10-30 20:19:35 +00:00
module code.chrissexton.org/cws/cabinet
2019-10-30 15:31:07 +00:00
go 1.13
require (
github.com/davecgh/go-spew v1.1.1 // indirect
2019-11-01 17:09:17 +00:00
github.com/gorilla/handlers v1.4.2
2019-10-30 15:31:07 +00:00
github.com/gorilla/mux v1.7.3
github.com/jmoiron/sqlx v1.2.0
github.com/kr/pretty v0.1.0 // indirect
2019-10-30 15:31:07 +00:00
github.com/mattn/go-sqlite3 v1.11.0
github.com/rs/zerolog v1.16.0
github.com/stretchr/graceful v1.2.15
github.com/stretchr/testify v1.4.0
2020-03-15 10:44:27 +00:00
golang.org/x/crypto v0.0.0-20191107222254-f4817d981bb6
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
2019-10-30 15:31:07 +00:00
google.golang.org/appengine v1.6.5 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.7 // indirect
2019-10-30 15:31:07 +00:00
)