-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
28 lines (24 loc) · 870 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
module github.com/go-surreal/som
go 1.22.7
retract [v0.1.0, v0.6.4] // only the latest version is supported for now
require (
github.com/dave/jennifer v1.7.1
github.com/go-surreal/sdbc v0.9.0
github.com/iancoleman/strcase v0.3.0
github.com/urfave/cli/v2 v2.27.5
github.com/wzshiming/gotype v0.7.4
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
golang.org/x/mod v0.22.0
gotest.tools/v3 v3.5.1
)
require (
github.com/coder/websocket v1.8.12 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/sys v0.28.0 // indirect
)