353a6c1f4b
- Add httprate dependency for rate limiting - Apply 10 requests per minute limit on auth endpoints - Prevent brute force attacks on login/register - Update README with security features
19 lines
403 B
Modula-2
19 lines
403 B
Modula-2
module apocapoc-api
|
|
|
|
go 1.24.0
|
|
|
|
toolchain go1.24.10
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/go-chi/cors v1.2.2
|
|
github.com/go-chi/httprate v0.7.4
|
|
github.com/golang-jwt/jwt/v5 v5.3.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
|
github.com/swaggo/http-swagger v1.3.4
|
|
github.com/swaggo/swag v1.16.4
|
|
golang.org/x/crypto v0.45.0
|
|
)
|