kafka/go.mod
Franz Kafka c28171b00c
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 6s
Mirror to GitHub / mirror (push) Failing after 3s
Tests / test (push) Failing after 13s
fix: replace x/net v0.52.0 (requires go 1.25) with v0.33.0 (go 1.21)
Use replace directive to force Go to use v0.33.0 instead of the
transitively-pulled v0.52.0, which requires Go 1.25.
2026-03-22 02:39:10 +00:00

19 lines
511 B
Modula-2

module github.com/metamorphosis-dev/kafka
go 1.24
require (
github.com/BurntSushi/toml v1.5.0
github.com/PuerkitoBio/goquery v1.9.0
github.com/redis/go-redis/v9 v9.18.0
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/net v0.52.0 // indirect
replace golang.org/x/net v0.52.0 => golang.org/x/net v0.33.0
)