49 lines
1.6 KiB
Modula-2
49 lines
1.6 KiB
Modula-2
module server
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/go-sql-driver/mysql v1.8.1
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/jmoiron/sqlx v1.4.0
|
|
github.com/redis/go-redis/v9 v9.6.1
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/segmentio/kafka-go v0.4.47
|
|
github.com/shirou/gopsutil v3.21.11+incompatible
|
|
github.com/vicanso/go-charts/v2 v2.6.10
|
|
google.golang.org/protobuf v1.36.2
|
|
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22
|
|
)
|
|
|
|
require (
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/klauspost/compress v1.15.9 // indirect
|
|
github.com/pierrec/lz4/v4 v4.1.15 // indirect
|
|
github.com/stretchr/testify v1.9.0 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.14 // indirect
|
|
github.com/tklauser/numcpus v0.8.0 // indirect
|
|
github.com/wcharczuk/go-chart/v2 v2.1.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect
|
|
golang.org/x/net v0.34.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.8.0 // direct
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/ThinkingDataAnalytics/go-sdk/v2 v2.0.3 //
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|