-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 674 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/darenliang/scaled-scheduler-go
go 1.19
require (
github.com/alecthomas/kingpin/v2 v2.3.1
github.com/go-zeromq/zmq4 v0.15.0
github.com/google/uuid v1.3.0
github.com/marusama/semaphore/v2 v2.5.0
github.com/orcaman/concurrent-map/v2 v2.0.1
github.com/panjf2000/ants/v2 v2.7.1
go.uber.org/zap v1.24.0
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/go-zeromq/goczmq/v4 v4.2.2 // indirect
github.com/xhit/go-str2duration v1.2.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.7.0 // indirect
)