mirror of
https://github.com/renorris/openfsd
synced 2026-04-05 14:55:33 +08:00
Bug fixes: - Fix re-hashing an already hashed password in UpdateUserRecord - Fix validator incorrectly flagging swift client name - Switched a > to a < when checking field length for #TM packets Misc: - Simplify client reader goroutine - Simplify client writer logic Features: - Add an option to enable plaintext passwords (replacing the JWT token in the AddPilotPDU `token` field.)
27 lines
812 B
Modula-2
27 lines
812 B
Modula-2
module github.com/renorris/openfsd
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/go-playground/validator/v10 v10.22.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/mmcloughlin/geohash v0.10.0
|
|
github.com/sethvargo/go-envconfig v1.1.0
|
|
github.com/stretchr/testify v1.9.0
|
|
golang.org/x/crypto v0.25.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.4 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/net v0.27.0 // indirect
|
|
golang.org/x/sys v0.22.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|