File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ module github.com/informalsystems/tm-load-test
3
3
go 1.20
4
4
5
5
require (
6
+ github.com/google/uuid v1.6.0
6
7
github.com/gorilla/websocket v1.5.0
7
8
github.com/prometheus/client_golang v1.16.0
8
- github.com/satori/go.uuid v1.2.0
9
9
github.com/sirupsen/logrus v1.9.3
10
10
github.com/spf13/cobra v1.7.0
11
11
github.com/stretchr/testify v1.8.4
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg
13
13
github.com/golang/protobuf v1.5.3 /go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY =
14
14
github.com/google/go-cmp v0.5.5 /go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE =
15
15
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
16
+ github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0 =
17
+ github.com/google/uuid v1.6.0 /go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo =
16
18
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc =
17
19
github.com/gorilla/websocket v1.5.0 /go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE =
18
20
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8 =
@@ -36,8 +38,6 @@ github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPH
36
38
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ =
37
39
github.com/rogpeppe/go-internal v1.10.0 /go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog =
38
40
github.com/russross/blackfriday/v2 v2.1.0 /go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM =
39
- github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww =
40
- github.com/satori/go.uuid v1.2.0 /go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0 =
41
41
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ =
42
42
github.com/sirupsen/logrus v1.9.3 /go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ =
43
43
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I =
Original file line number Diff line number Diff line change 7
7
"time"
8
8
"unicode"
9
9
10
+ "github.com/google/uuid"
10
11
"github.com/gorilla/websocket"
11
12
"github.com/informalsystems/tm-load-test/internal/logging"
12
- uuid "github.com/satori/go.uuid"
13
13
)
14
14
15
15
const (
@@ -321,5 +321,5 @@ func isValidWorkerID(id string) bool {
321
321
}
322
322
323
323
func makeWorkerID () string {
324
- return strings .ReplaceAll (uuid .NewV4 ().String (), "-" , "" )
324
+ return strings .ReplaceAll (uuid .New ().String (), "-" , "" )
325
325
}
You can’t perform that action at this time.
0 commit comments