mirror of
https://github.com/lkmio/gb-cms.git
synced 2025-09-26 19:51:22 +08:00
53 lines
1.8 KiB
Modula-2
53 lines
1.8 KiB
Modula-2
module gb-cms
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/ghettovoice/gosip v0.0.0-20240401112151-56d750b16008
|
|
github.com/natefinch/lumberjack v2.0.0+incompatible
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect
|
|
go.uber.org/zap v1.27.0
|
|
golang.org/x/net v0.21.0
|
|
golang.org/x/text v0.20.0
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.4.0 // indirect
|
|
github.com/discoviking/fsm v0.0.0-20150126104936-f4a273feecca // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // 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/google/uuid v1.3.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
|
|
github.com/tevino/abool v1.2.0 // indirect
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
golang.org/x/crypto v0.24.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/term v0.21.0 // indirect
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
|
modernc.org/libc v1.22.5 // indirect
|
|
modernc.org/mathutil v1.5.0 // indirect
|
|
modernc.org/memory v1.5.0 // indirect
|
|
modernc.org/sqlite v1.23.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/glebarez/sqlite v1.11.0
|
|
github.com/gomodule/redigo v1.9.2
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/lkmio/avformat v0.0.0
|
|
gorm.io/gorm v1.26.1
|
|
)
|
|
|
|
replace github.com/lkmio/avformat => ../avformat
|