mirror of
https://github.com/ajvpot/meshexplorer.git
synced 2026-06-11 17:54:52 +02:00
384f7f8b14
Module is now github.com/ajvpot/meshexplorer/ingest (the code lives under ingest/ in the meshexplorer repo), updated from the old standalone clickhouse-meshingest path. build/vet/test pass. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
1.3 KiB
Modula-2
39 lines
1.3 KiB
Modula-2
module github.com/ajvpot/meshexplorer/ingest
|
|
|
|
go 1.24
|
|
|
|
toolchain go1.24.4
|
|
|
|
require (
|
|
github.com/ClickHouse/ch-go v0.66.1
|
|
github.com/ClickHouse/clickhouse-go/v2 v2.37.2
|
|
github.com/eclipse/paho.mqtt.golang v1.5.0
|
|
github.com/pressly/goose/v3 v3.24.3
|
|
go.uber.org/zap v1.27.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.1 // indirect
|
|
github.com/go-faster/city v1.0.1 // indirect
|
|
github.com/go-faster/errors v0.7.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/paulmach/orb v0.11.1 // indirect
|
|
github.com/pierrec/lz4/v4 v4.1.22 // indirect
|
|
github.com/segmentio/asm v1.2.0 // indirect
|
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
|
github.com/shopspring/decimal v1.4.0 // indirect
|
|
go.opentelemetry.io/otel v1.36.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.36.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
golang.org/x/sync v0.15.0 // indirect
|
|
golang.org/x/sys v0.33.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|