stillbox/go.mod

67 lines
2.6 KiB
Modula-2
Raw Normal View History

2024-07-14 13:47:48 -04:00
module dynatron.me/x/stillbox
2024-10-30 09:49:45 -04:00
go 1.23.2
2024-07-14 13:47:48 -04:00
require (
2024-08-05 13:18:09 -04:00
dynatron.me/x/go-minimp3 v0.0.0-20240805171536-7ea857e216d6
2024-10-30 09:49:45 -04:00
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
2024-08-11 13:46:43 -04:00
github.com/go-audio/wav v1.1.0
2024-07-14 17:39:03 -04:00
github.com/go-chi/chi/v5 v5.1.0
2024-08-14 19:12:20 -04:00
github.com/go-chi/cors v1.2.1
2024-07-14 17:39:03 -04:00
github.com/go-chi/httprate v0.9.0
github.com/go-chi/jwtauth/v5 v5.3.1
github.com/go-chi/render v1.0.3
2024-11-03 19:49:10 -05:00
github.com/go-viper/mapstructure/v2 v2.2.1
2024-07-14 21:26:53 -04:00
github.com/golang-migrate/migrate/v4 v4.17.1
2024-10-30 09:49:45 -04:00
github.com/google/uuid v1.6.0
2024-08-04 00:55:28 -04:00
github.com/gorilla/websocket v1.5.3
2024-08-04 23:32:46 -04:00
github.com/hajimehoshi/oto v1.0.1
2024-07-14 17:39:03 -04:00
github.com/jackc/pgx/v5 v5.6.0
2024-10-31 09:09:58 -04:00
github.com/nikoksr/notify v1.0.1
2024-07-14 13:47:48 -04:00
github.com/rs/zerolog v1.33.0
github.com/spf13/cobra v1.8.1
2024-10-31 09:09:58 -04:00
github.com/stretchr/testify v1.9.0
2024-08-11 13:46:43 -04:00
github.com/tcolgate/mp3 v0.0.0-20170426193717-e79c5a46d300
2024-10-30 09:49:45 -04:00
golang.org/x/crypto v0.28.0
golang.org/x/sync v0.8.0
golang.org/x/term v0.25.0
google.golang.org/protobuf v1.35.1
2024-07-14 17:39:03 -04:00
gopkg.in/yaml.v3 v3.0.1
2024-07-14 13:47:48 -04:00
)
require (
2024-07-14 17:39:03 -04:00
github.com/ajg/form v1.5.1 // indirect
2024-10-30 09:49:45 -04:00
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2024-10-31 09:09:58 -04:00
github.com/davecgh/go-spew v1.1.1 // indirect
2024-07-14 13:47:48 -04:00
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
2024-08-11 13:46:43 -04:00
github.com/go-audio/audio v1.0.0 // indirect
github.com/go-audio/riff v1.0.0 // indirect
2024-07-14 13:47:48 -04:00
github.com/goccy/go-json v0.10.2 // indirect
2024-07-14 21:26:53 -04:00
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
2024-07-14 13:47:48 -04:00
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2024-07-14 21:26:53 -04:00
github.com/jackc/pgerrcode v0.0.0-20220416144525-469b46aa5efa // indirect
2024-07-14 17:39:03 -04:00
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
2024-07-14 21:26:53 -04:00
github.com/jackc/puddle/v2 v2.2.1 // indirect
2024-07-14 17:39:03 -04:00
github.com/kr/text v0.2.0 // indirect
2024-07-14 13:47:48 -04:00
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/httprc v1.0.4 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/jwx/v2 v2.0.20 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
2024-10-30 09:49:45 -04:00
github.com/mattn/go-isatty v0.0.20 // indirect
2024-10-31 09:09:58 -04:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-07-14 17:39:03 -04:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
2024-07-14 13:47:48 -04:00
github.com/segmentio/asm v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
2024-07-14 21:26:53 -04:00
go.uber.org/atomic v1.7.0 // indirect
2024-08-04 23:32:46 -04:00
golang.org/x/exp/shiny v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/image v0.14.0 // indirect
golang.org/x/mobile v0.0.0-20231127183840-76ac6878050a // indirect
2024-10-30 09:49:45 -04:00
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
2024-07-14 13:47:48 -04:00
)