-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
68 lines (64 loc) · 2.75 KB
/
go.mod
File metadata and controls
68 lines (64 loc) · 2.75 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module github.com/TryMightyAI/citadel
go 1.25.7
require (
github.com/gofiber/fiber/v3 v3.0.0-rc.3
github.com/gofiber/utils/v2 v2.0.0-rc.4 // indirect; CVE fix: silent fallback to predictable UUIDs
github.com/philippgille/chromem-go v0.7.0
github.com/redis/go-redis/v9 v9.17.2
golang.org/x/text v0.32.0
)
require (
github.com/alicebob/miniredis/v2 v2.35.0
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.7.6
github.com/knights-analytics/hugot v0.6.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/daulet/tokenizers v1.24.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/go-errors/errors v1.5.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/gofiber/schema v1.6.0 // indirect
github.com/gofrs/flock v0.13.0 // indirect
github.com/gomlx/exceptions v0.0.3 // indirect
github.com/gomlx/go-huggingface v0.3.1 // indirect
github.com/gomlx/go-xla v0.1.4 // indirect
github.com/gomlx/gomlx v0.26.0 // indirect
github.com/gomlx/onnx-gomlx v0.3.4 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/klauspost/compress v1.18.2 // indirect
github.com/knights-analytics/ortgenai v0.0.1 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/philhofer/fwd v1.2.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/schollz/progressbar/v2 v2.15.0 // indirect
github.com/sugarme/regexpset v0.0.0-20200920021344-4d4ec8eaf93c // indirect
github.com/sugarme/tokenizer v0.3.0 // indirect
github.com/tinylib/msgp v1.6.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.68.0 // indirect
github.com/viant/afs v1.29.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/yalue/onnxruntime_go v1.25.0 // indirect
github.com/yuin/gopher-lua v1.1.1 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/exp v0.0.0-20251219203646-944ab1f22d93 // indirect
golang.org/x/image v0.34.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/term v0.38.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
)