2024-12-16 19:11:36 +01:00
|
|
|
module github.com/tlinden/anydb
|
|
|
|
|
|
2025-04-25 14:27:49 +02:00
|
|
|
go 1.23.0
|
|
|
|
|
|
|
|
|
|
toolchain go1.24.1
|
2025-02-10 15:34:04 +01:00
|
|
|
|
2024-12-16 19:11:36 +01:00
|
|
|
require (
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/dustin/go-humanize v1.0.1
|
2025-09-18 19:45:54 +02:00
|
|
|
github.com/gofiber/fiber/v2 v2.52.9
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0
|
2025-09-18 19:45:23 +02:00
|
|
|
github.com/olekukonko/tablewriter v1.0.9
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/pelletier/go-toml v1.9.5
|
2025-04-25 14:13:34 +02:00
|
|
|
github.com/rogpeppe/go-internal v1.14.1
|
2025-04-25 14:18:06 +02:00
|
|
|
github.com/spf13/cobra v1.9.1
|
2025-04-25 13:58:17 +02:00
|
|
|
github.com/tlinden/yadu v0.1.3
|
2025-09-18 19:50:51 +02:00
|
|
|
go.etcd.io/bbolt v1.4.3
|
2025-09-18 19:47:19 +02:00
|
|
|
golang.org/x/crypto v0.41.0
|
|
|
|
|
golang.org/x/term v0.34.0
|
2025-04-25 13:58:17 +02:00
|
|
|
google.golang.org/protobuf v1.36.6
|
2025-02-02 19:42:12 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
require (
|
|
|
|
|
github.com/andybalholm/brotli v1.1.1 // indirect
|
2025-02-10 15:34:04 +01:00
|
|
|
github.com/fatih/color v1.16.0 // indirect
|
2024-12-20 18:59:59 +01:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
|
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
2024-12-20 18:59:59 +01:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
2025-09-18 19:45:23 +02:00
|
|
|
github.com/olekukonko/errors v1.1.0 // indirect
|
|
|
|
|
github.com/olekukonko/ll v0.0.9 // indirect
|
2024-12-20 18:59:59 +01:00
|
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
2025-02-02 19:42:12 +01:00
|
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
2024-12-20 18:59:59 +01:00
|
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
|
|
|
github.com/valyala/fasthttp v1.55.0 // indirect
|
|
|
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
2025-09-18 19:47:19 +02:00
|
|
|
golang.org/x/sys v0.35.0 // indirect
|
2025-04-25 14:13:34 +02:00
|
|
|
golang.org/x/tools v0.26.0 // indirect
|
2025-02-10 15:34:04 +01:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2024-12-16 19:11:36 +01:00
|
|
|
)
|