-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathgo.mod
More file actions
41 lines (38 loc) · 1.4 KB
/
go.mod
File metadata and controls
41 lines (38 loc) · 1.4 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
module codex-proxy
go 1.25.0
require (
github.com/fasthttp/router v1.5.4
github.com/fasthttp/websocket v1.5.12
github.com/go-sql-driver/mysql v1.9.3
github.com/google/uuid v1.6.0
github.com/lib/pq v1.12.3
github.com/sirupsen/logrus v1.9.4
github.com/tidwall/gjson v1.18.0
github.com/tidwall/sjson v1.2.5
github.com/valyala/fasthttp v1.70.0
golang.org/x/net v0.53.0
golang.org/x/sync v0.20.0
gopkg.in/yaml.v3 v3.0.1
modernc.org/sqlite v1.49.1
)
require (
filippo.io/edwards25519 v1.2.0 // indirect
github.com/andybalholm/brotli v1.2.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/klauspost/compress v1.18.5 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/mattn/go-isatty v0.0.21 // indirect
github.com/ncruces/go-strftime v1.0.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/savsgio/gotils v0.0.0-20250924091648-bce9a52d7761 // indirect
github.com/stretchr/testify v1.11.1 // indirect
github.com/tidwall/match v1.2.0 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
golang.org/x/sys v0.43.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
modernc.org/libc v1.72.0 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.11.0 // indirect
)