v0.12.0 tcp and http server sinks added antested, no tls or access control

This commit is contained in:
2026-01-04 17:21:08 -05:00
parent 70bf6a8060
commit 15f484f98b
10 changed files with 1061 additions and 15 deletions

13
go.mod
View File

@ -5,11 +5,22 @@ go 1.25.4
require (
github.com/lixenwraith/config v0.1.1-0.20251114180219-f7875023a51b
github.com/lixenwraith/log v0.1.1-0.20251115213227-55d2c92d483f
github.com/panjf2000/gnet/v2 v2.9.7
github.com/valyala/fasthttp v1.68.0
)
require (
github.com/BurntSushi/toml v1.5.0 // indirect
github.com/BurntSushi/toml v1.6.0 // indirect
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/klauspost/compress v1.18.2 // indirect
github.com/panjf2000/ants/v2 v2.11.4 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.1 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)