-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
32 lines (28 loc) · 1.08 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
module github.com/russross/codegrinder
go 1.21.0
toolchain go1.21.5
require (
github.com/blang/semver v3.5.1+incompatible
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab
github.com/gorilla/securecookie v1.1.2
github.com/gorilla/websocket v1.5.1
github.com/martini-contrib/binding v0.0.0-20160701174519-05d3e151b6cf
github.com/martini-contrib/gzip v0.0.0-20151124214156-6c035326b43f
github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11
github.com/mattn/go-sqlite3 v1.14.22
github.com/russross/blackfriday/v2 v2.1.0
github.com/russross/meddler v1.0.1
github.com/spf13/cobra v1.8.0
golang.org/x/crypto v0.22.0
golang.org/x/net v0.24.0
gopkg.in/gcfg.v1 v1.2.3
)
require (
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)