feat: use MemoryAllocator

This commit is contained in:
langhuihui
2024-04-03 17:01:18 +08:00
parent fe69b4bdd2
commit 2b84f0a134
34 changed files with 1153 additions and 130 deletions

21
go.mod
View File

@@ -1,24 +1,35 @@
module m7s.live/m7s/v5
go 1.22
toolchain go1.22.1
require github.com/quic-go/quic-go v0.42.0
require (
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/shoenig/go-m1cpu v0.1.6 // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
)
require (
github.com/bluenviron/mediacommon v1.9.2
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/logrusorgru/aurora/v4 v4.0.0
github.com/gorilla/websocket v1.5.1
github.com/mcuadros/go-defaults v1.2.0
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
github.com/shirou/gopsutil/v3 v3.24.3
go.uber.org/mock v0.4.0 // indirect
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sync v0.6.0
golang.org/x/sys v0.8.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/tools v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1
)