violet/go.mod

53 lines
1.9 KiB
Modula-2
Raw Normal View History

2023-07-22 01:11:47 +01:00
module github.com/1f349/violet
2023-04-19 01:30:23 +01:00
go 1.22
2023-04-19 01:30:23 +01:00
require (
github.com/1f349/mjwt v0.2.5
github.com/AlecAivazis/survey/v2 v2.3.7
2024-04-20 16:17:32 +01:00
github.com/golang-migrate/migrate/v4 v4.17.1
github.com/google/subcommands v1.2.0
github.com/google/uuid v1.6.0
2023-12-04 16:38:31 +00:00
github.com/gorilla/websocket v1.5.1
2023-04-21 03:21:46 +01:00
github.com/julienschmidt/httprouter v1.3.0
github.com/mattn/go-sqlite3 v1.14.22
2024-04-20 16:17:32 +01:00
github.com/mrmelon54/certgen v0.0.2
github.com/mrmelon54/exit-reload v0.0.2
github.com/mrmelon54/png2ico v1.0.2
github.com/mrmelon54/rescheduler v0.0.3
github.com/mrmelon54/trie v0.0.3
github.com/prometheus/client_golang v1.19.0
github.com/rs/cors v1.10.1
2024-04-20 16:17:32 +01:00
github.com/sethvargo/go-limiter v1.0.0
github.com/stretchr/testify v1.9.0
2024-04-20 16:17:32 +01:00
golang.org/x/net v0.24.0
golang.org/x/sync v0.7.0
2023-04-19 01:30:23 +01:00
)
require (
2023-10-27 09:16:52 +01:00
github.com/becheran/wildmatch-go v1.0.0 // indirect
2024-02-16 01:41:42 +00:00
github.com/beorn7/perks v1.0.1 // indirect
2024-04-20 16:17:32 +01:00
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2023-04-19 01:30:23 +01:00
github.com/davecgh/go-spew v1.1.1 // indirect
2023-04-21 03:21:46 +01:00
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
2024-02-16 01:41:42 +00:00
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
2023-04-21 03:21:46 +01:00
github.com/pkg/errors v0.9.1 // indirect
2023-04-19 01:30:23 +01:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-04-20 16:17:32 +01:00
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.53.0 // indirect
github.com/prometheus/procfs v0.14.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
2024-04-20 16:17:32 +01:00
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
2023-12-04 16:38:31 +00:00
golang.org/x/text v0.14.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
2023-04-19 01:30:23 +01:00
gopkg.in/yaml.v3 v3.0.1 // indirect
)