2024-04-26 21:12:56 +01:00
|
|
|
module hectabit.org/burgerauth
|
|
|
|
|
2024-06-28 19:35:33 +01:00
|
|
|
go 1.22
|
2024-04-26 21:12:56 +01:00
|
|
|
|
|
|
|
require (
|
Added example configuration, updated README.md, updated background image to Public Domain image, updated styles to be in accordance with the New Burgerware Design, fixed pages displaying poorly on phones, fixed server panics being caused by incorrect JSON, made it clear AESKeyShare is not in working order, made the application not hard-code the URL, made the application not hard-code the app name, updated the CAPTCHA module to the newest version and URL, removed crypto-js, removed unneeded broken code left over from Burgernotes, removed unneeded CSS left over from Burgernotes, made page titles consistant, changed some formatting to be using camel instead of snake case, fixed various JS bad-practices, used a really long commit message.
2024-07-10 18:43:17 +01:00
|
|
|
concord.hectabit.org/HectaBit/captcha v1.4.5
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
|
|
github.com/gin-contrib/sessions v1.0.1
|
|
|
|
github.com/gin-gonic/gin v1.9.1
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
|
|
github.com/spf13/viper v1.18.2
|
|
|
|
golang.org/x/crypto v0.22.0
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/bytedance/sonic v1.11.3 // indirect
|
|
|
|
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
|
|
|
|
github.com/chenzhuoyu/iasm v0.9.1 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/go-playground/validator/v10 v10.19.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
2024-05-09 17:27:47 +01:00
|
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/gorilla/context v1.1.2 // indirect
|
|
|
|
github.com/gorilla/securecookie v1.1.2 // indirect
|
|
|
|
github.com/gorilla/sessions v1.2.2 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
github.com/ugorji/go/codec v1.2.12 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
|
|
go.uber.org/multierr v1.9.0 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
golang.org/x/arch v0.7.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
|
2024-05-09 17:27:47 +01:00
|
|
|
golang.org/x/image v0.15.0 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
golang.org/x/net v0.24.0 // indirect
|
|
|
|
golang.org/x/sys v0.19.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2024-05-09 01:24:54 +01:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2024-04-26 21:12:56 +01:00
|
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
|
|
)
|