-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
30 lines (27 loc) · 1001 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
26
27
28
29
30
module github.com/tjs-w/go-proto-stomp
go 1.18
require (
github.com/RoaringBitmap/roaring v1.0.0
github.com/c-bata/go-prompt v0.2.6
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/deckarep/golang-set v1.8.0
github.com/fatih/color v1.13.0
github.com/go-co-op/gocron v1.13.0
github.com/google/go-cmp v0.5.8
github.com/google/uuid v1.3.0
github.com/jessevdk/go-flags v1.5.0
nhooyr.io/websocket v1.8.7
)
require (
github.com/bits-and-blooms/bitset v1.2.0 // indirect
github.com/klauspost/compress v1.10.3 // indirect
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
)