-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
26 lines (23 loc) · 911 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
module github.com/lightninglabs/lightning-api-ng
require (
github.com/iancoleman/strcase v0.2.0
github.com/pseudomuto/protoc-gen-doc v1.5.1
golang.org/x/exp v0.0.0-20221230185412-738e83a70c30
google.golang.org/genproto v0.0.0-20220719170305-83ca9fad585f
google.golang.org/protobuf v1.28.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/Masterminds/semver v1.4.2 // indirect
github.com/Masterminds/sprig v2.15.0+incompatible // indirect
github.com/aokoli/goutils v1.0.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/huandu/xstrings v1.0.0 // indirect
github.com/imdario/mergo v0.3.4 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pseudomuto/protokit v0.2.0 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)
go 1.18