-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
25 lines (22 loc) · 789 Bytes
/
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
module github.com/creativenucleus/bytejammer
go 1.21
require (
github.com/google/uuid v1.3.1
github.com/gorilla/websocket v1.5.0
github.com/gosimple/slug v1.13.1
github.com/tyler-sommer/stick v1.0.6
github.com/urfave/cli/v2 v2.25.7
golang.org/x/net v0.17.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/testify v1.8.4 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)