-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
21 lines (18 loc) · 679 Bytes
/
go.mod
File metadata and controls
21 lines (18 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/lilac/fun-lang
go 1.18
require (
github.com/hashicorp/go-multierror v1.1.1
github.com/rhysd/locerr v0.0.0-20170710120751-9e34f7a52ee7
github.com/stretchr/testify v1.7.0
golang.org/x/exp v0.0.0-20220713135740-79cabaa25d75
)
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)