-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
30 lines (27 loc) · 934 Bytes
/
go.mod
File metadata and controls
30 lines (27 loc) · 934 Bytes
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/jacktrip/jacktrip-agent
go 1.18
require (
github.com/coreos/go-systemd/v22 v22.1.0
github.com/go-logr/zapr v0.3.0
github.com/go-ping/ping v0.0.0-20201115131931-3300c582a663
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/jmoiron/sqlx v1.2.0
github.com/stretchr/testify v1.7.0
github.com/xthexder/go-jack v0.0.0-20220805234212-bc8604043aba
go.uber.org/zap v1.16.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v0.2.0 // indirect
github.com/godbus/dbus/v5 v5.0.3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/tools v0.1.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)