-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
35 lines (31 loc) · 1.23 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
module github.com/codecrafters-io/cli
go 1.22.4
toolchain go1.23.4
require (
github.com/avast/retry-go v3.0.0+incompatible
github.com/codecrafters-io/logstream v0.2.4
github.com/fatih/color v1.13.0
github.com/getsentry/sentry-go v0.15.0
github.com/levigross/grequests v0.0.0-20190908174114-253788527a1a
github.com/mitchellh/go-wordwrap v1.0.1
github.com/otiai10/copy v1.7.0
github.com/rs/zerolog v1.28.0
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
github.com/stretchr/testify v1.8.1
)
require (
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/go-redis/redis/v8 v8.11.5 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rohitpaulk/asyncwriter v0.0.2 // indirect
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)