forked from fortio/fortio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
43 lines (38 loc) · 1.31 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
module fortio.org/fortio
// As a library the current version of fortio works with 1.18 (first version with generics) but tests use 1.19 features
// Note we will switch soon to 1.22 for the linters
go 1.19
// toolchain go1.22.3 // this shouldn't be necessary - see https://github.com/golang/go/issues/66175#issuecomment-2010343876
require (
fortio.org/assert v1.2.1
fortio.org/cli v1.5.2
fortio.org/dflag v1.7.1
fortio.org/log v1.12.2
fortio.org/scli v1.14.2
fortio.org/sets v1.0.4
fortio.org/testscript v0.3.1
fortio.org/version v1.0.4
github.com/golang/protobuf v1.5.4
github.com/google/uuid v1.6.0
golang.org/x/net v0.25.0
google.golang.org/grpc v1.64.0
)
// Local dev of dependencies changes
//replace (
// fortio.org/assert => ../assert
// fortio.org/cli => ../cli
// fortio.org/dflag => ../dflag
// fortio.org/log => ../log
// fortio.org/scli => ../scli
// fortio.org/version => ../version
//)
require (
fortio.org/struct2env v0.4.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/tools v0.21.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e // indirect
google.golang.org/protobuf v1.34.1 // indirect
)