2025-12-02 21:43:56 +01:00
|
|
|
module codeberg.org/scip/ephemerup
|
2023-02-14 19:25:44 +01:00
|
|
|
|
2025-12-02 21:43:56 +01:00
|
|
|
go 1.24
|
2023-02-14 19:25:44 +01:00
|
|
|
|
|
|
|
|
require (
|
2025-12-02 21:43:56 +01:00
|
|
|
codeberg.org/scip/ephemerup/common v0.0.0-20231001134723-a1b3fe6f25d1
|
2023-03-17 19:30:03 +01:00
|
|
|
github.com/alecthomas/repr v0.2.0
|
|
|
|
|
github.com/gofiber/fiber/v2 v2.42.0
|
|
|
|
|
github.com/gofiber/keyauth/v2 v2.1.32
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/google/uuid v1.6.0
|
2023-03-17 19:30:03 +01:00
|
|
|
github.com/knadh/koanf/parsers/hcl v0.1.0
|
|
|
|
|
github.com/knadh/koanf/providers/env v0.1.0
|
|
|
|
|
github.com/knadh/koanf/providers/file v0.1.0
|
|
|
|
|
github.com/knadh/koanf/providers/posflag v0.1.0
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/knadh/koanf/v2 v2.0.1
|
|
|
|
|
github.com/maxatome/go-testdeep v1.13.0
|
|
|
|
|
github.com/spf13/pflag v1.0.10
|
|
|
|
|
go.etcd.io/bbolt v1.3.12
|
2023-02-14 19:25:44 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/andybalholm/brotli v1.0.6 // indirect
|
|
|
|
|
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
|
2023-03-21 19:41:24 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-02-14 19:25:44 +01:00
|
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
|
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/klauspost/compress v1.15.15 // indirect
|
|
|
|
|
github.com/knadh/koanf/maps v0.1.2 // indirect
|
|
|
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
|
|
|
github.com/mattn/go-runewidth v0.0.19 // indirect
|
2023-03-07 20:06:13 +01:00
|
|
|
github.com/mitchellh/copystructure v1.2.0 // indirect
|
2023-02-14 19:25:44 +01:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2023-03-07 20:06:13 +01:00
|
|
|
github.com/mitchellh/reflectwalk v1.0.2 // indirect
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/philhofer/fwd v1.1.2 // indirect
|
2023-02-24 12:16:03 +01:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
|
|
|
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
|
2025-12-02 21:43:56 +01:00
|
|
|
github.com/savsgio/gotils v0.0.0-20250924091648-bce9a52d7761 // indirect
|
|
|
|
|
github.com/tinylib/msgp v1.1.9 // indirect
|
2023-02-24 12:16:03 +01:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
|
|
|
github.com/valyala/fasthttp v1.44.0 // indirect
|
|
|
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
2025-12-02 21:43:56 +01:00
|
|
|
golang.org/x/sys v0.29.0 // indirect
|
2023-02-14 19:25:44 +01:00
|
|
|
)
|
2023-03-19 12:33:15 +01:00
|
|
|
|
2025-12-02 21:43:56 +01:00
|
|
|
replace codeberg.org/scip/ephemerup/common => ./common
|