go.mod raw

   1  module github.com/mlekudev/gitea-nostr-auth
   2  
   3  go 1.25.3
   4  
   5  require (
   6  	github.com/go-chi/chi/v5 v5.1.0
   7  	github.com/go-chi/cors v1.2.1
   8  	gopkg.in/yaml.v3 v3.0.1
   9  	next.orly.dev v0.0.0
  10  )
  11  
  12  require (
  13  	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
  14  	github.com/ebitengine/purego v0.9.1 // indirect
  15  	github.com/gorilla/websocket v1.5.3 // indirect
  16  	github.com/klauspost/cpuid/v2 v2.3.0 // indirect
  17  	github.com/minio/sha256-simd v1.0.1 // indirect
  18  	github.com/puzpuzpuz/xsync/v3 v3.5.1 // indirect
  19  	github.com/templexxx/cpu v0.1.1 // indirect
  20  	github.com/templexxx/xhex v0.0.0-20200614015412-aed53437177b // indirect
  21  	golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 // indirect
  22  	golang.org/x/sys v0.41.0 // indirect
  23  	lukechampine.com/frand v1.5.1 // indirect
  24  )
  25  
  26  replace next.orly.dev => git.nostrdev.com/mleku/next.orly.dev v0.62.10-0.20260304132327-91c9990176b9
  27