-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
23 lines (20 loc) · 858 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
module github.com/sundown/solution
go 1.18
require (
github.com/alecthomas/participle/v2 v2.0.0-alpha7 // direct
github.com/alecthomas/repr v0.1.1 // indirect; direct
github.com/llir/llvm v0.3.4 // direct
)
require (
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
github.com/mewmew/float v0.0.0-20211212214546-4fe539893335 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/samber/lo v1.19.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/sys v0.0.0-20220406163625-3f8b81556e12 // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)