-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathgo.mod
29 lines (25 loc) · 992 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
// Copyright (c) Microsoft Corporation.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
module github.com/microsoft/go/_util
go 1.22.0
require (
github.com/microsoft/go-infra v0.0.6
github.com/microsoft/go-infra/goinstallscript v0.0.0-20241113173623-26aea3823c67
golang.org/x/sys v0.29.0
gotest.tools/gotestsum v1.12.0
)
require (
github.com/bitfield/gotestdox v0.2.2 // indirect
github.com/dnephin/pflag v1.0.7 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/microsoft/azure-devops-go-api/azuredevops v1.0.0-b5 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/term v0.20.0 // indirect
golang.org/x/text v0.21.0 // indirect
)