- Remove go-rod dependency and related indirect dependencies - Add chromedp and its dependencies (cdproto, sysutil, gobwas/ws, etc.) - Delete unused .cobra.yaml configuration file Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
68 lines
2.8 KiB
Modula-2
68 lines
2.8 KiB
Modula-2
module game-driver
|
|
|
|
go 1.26
|
|
|
|
require (
|
|
github.com/adrg/libvlc-go/v3 v3.1.6
|
|
github.com/aliyun/alibabacloud-nls-go-sdk v1.1.1
|
|
github.com/chromedp/chromedp v0.15.1
|
|
github.com/ebitengine/oto/v3 v3.4.0
|
|
github.com/eclipse/paho.golang v0.23.0
|
|
github.com/go-pkgz/cronrange v0.2.0
|
|
github.com/grid-x/modbus v0.0.0-20250219144522-2b18d136199f
|
|
github.com/hajimehoshi/go-mp3 v0.3.4
|
|
github.com/hypebeast/go-osc v0.0.0-20220308234300-cec5a8a1e5f5
|
|
github.com/spf13/viper v1.21.0
|
|
github.com/tencentcloud/tencentcloud-cls-sdk-go v1.0.14
|
|
github.com/tphakala/go-audio-resampler v1.2.0
|
|
github.com/urfave/cli/v3 v3.8.0
|
|
github.com/warthog618/go-gpiocdev v0.9.1
|
|
github.com/youpy/go-wav v0.3.2
|
|
go.uber.org/zap v1.27.1
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/aliyun/alibaba-cloud-sdk-go v1.63.107 // indirect
|
|
github.com/chromedp/cdproto v0.0.0-20260321001828-e3e3800016bc // indirect
|
|
github.com/chromedp/sysutil v1.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/ebitengine/purego v0.10.0 // indirect
|
|
github.com/fsnotify/fsnotify v1.9.0 // indirect
|
|
github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
|
|
github.com/gobwas/httphead v0.1.0 // indirect
|
|
github.com/gobwas/pool v0.2.1 // indirect
|
|
github.com/gobwas/ws v1.4.0 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/grid-x/serial v0.0.0-20211107191517-583c7356b3aa // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.18.5 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b // indirect
|
|
github.com/pelletier/go-toml/v2 v2.3.0 // indirect
|
|
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/sagikazarmark/locafero v0.12.0 // indirect
|
|
github.com/satori/go.uuid v1.2.0 // indirect
|
|
github.com/spf13/afero v1.15.0 // indirect
|
|
github.com/spf13/cast v1.10.0 // indirect
|
|
github.com/spf13/pflag v1.0.10 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/tphakala/simd v1.0.22 // indirect
|
|
github.com/youpy/go-riff v0.1.0 // indirect
|
|
github.com/zaf/g711 v1.4.0 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
|
golang.org/x/net v0.52.0 // indirect
|
|
golang.org/x/sys v0.43.0 // indirect
|
|
golang.org/x/text v0.35.0 // indirect
|
|
gonum.org/v1/gonum v0.17.0 // indirect
|
|
google.golang.org/protobuf v1.36.11 // indirect
|
|
gopkg.in/ini.v1 v1.67.1 // indirect
|
|
)
|