-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (20 loc) · 709 Bytes
/
Copy pathgo.mod
File metadata and controls
25 lines (20 loc) · 709 Bytes
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
module github.com/ZingYao/autogo_scriptengine
go 1.26
toolchain go1.26.4
require (
github.com/Dasongzi1366/AutoGo v0.0.0-20250701130936-d7d8087a0f89
github.com/dop251/goja v0.0.0-20260311135729-065cd970411c
github.com/gorilla/websocket v1.5.3
)
require (
github.com/mattn/go-sqlite3 v1.14.27 // indirect
github.com/pelletier/go-toml/v2 v2.4.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/ZingYao/go-lua-vm v1.1.2-0.20260718041816-182449775165
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
github.com/google/pprof v0.0.0-20240727154555-813a5fbdbec8 // indirect
golang.org/x/text v0.16.0 // indirect
)