mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
71 lines
3.0 KiB
Modula-2
71 lines
3.0 KiB
Modula-2
module github.com/posthog/posthog/livestream
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
github.com/confluentinc/confluent-kafka-go/v2 v2.10.1
|
|
github.com/fsnotify/fsnotify v1.9.0
|
|
github.com/gofrs/uuid/v5 v5.3.2
|
|
github.com/golang-jwt/jwt/v5 v5.2.2
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
|
github.com/jackc/pgx/v5 v5.7.5
|
|
github.com/labstack/echo-contrib v0.17.4
|
|
github.com/labstack/echo/v4 v4.13.4
|
|
github.com/mailru/easyjson v0.9.0
|
|
github.com/oschwald/maxminddb-golang v1.13.1
|
|
github.com/prometheus/client_golang v1.22.0
|
|
github.com/spf13/viper v1.20.1
|
|
github.com/stretchr/testify v1.10.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/docker/docker-credential-helpers v0.8.2 // indirect
|
|
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.4 // indirect
|
|
github.com/go-openapi/swag v0.22.7 // indirect
|
|
github.com/go-viper/mapstructure/v2 v2.3.0 // indirect
|
|
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/labstack/gommon v0.4.2 // indirect
|
|
github.com/magiconair/properties v1.8.9 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
|
github.com/prometheus/common v0.65.0 // indirect
|
|
github.com/prometheus/procfs v0.16.1 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
github.com/rogpeppe/go-internal v1.11.0 // indirect
|
|
github.com/sagikazarmark/locafero v0.9.0 // indirect
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
github.com/spf13/afero v1.14.0 // indirect
|
|
github.com/spf13/cast v1.9.2 // indirect
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.39.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
golang.org/x/text v0.26.0 // indirect
|
|
golang.org/x/time v0.12.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/klog/v2 v2.120.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20240117194847-208609032b15 // indirect
|
|
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|