-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
34 lines (30 loc) · 1.13 KB
/
Copy pathgo.mod
File metadata and controls
34 lines (30 loc) · 1.13 KB
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
module github.com/gandazgul/mnemosyne
go 1.26.0
require (
github.com/asg017/sqlite-vec-go-bindings v0.1.6
github.com/fatih/color v1.18.0
github.com/mattn/go-sqlite3 v1.14.34
github.com/spf13/cobra v1.10.2
// this is just the bindings and it doesnt match the version of onnxruntime. the version wrapped here is 1.23.1
github.com/yalue/onnxruntime_go v1.16.0
)
require (
github.com/mattn/go-isatty v0.0.20
github.com/sugarme/tokenizer v0.3.0
github.com/yuin/goldmark v1.7.17
golang.org/x/term v0.42.0
)
require (
github.com/emirpasic/gods v1.18.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/schollz/progressbar/v2 v2.15.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/sugarme/regexpset v0.0.0-20200920021344-4d4ec8eaf93c // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)