65 lines
2.6 KiB
Modula-2
65 lines
2.6 KiB
Modula-2
module cryptoHermes
|
|
|
|
go 1.24.1
|
|
|
|
require (
|
|
github.com/enetx/g v1.0.195
|
|
github.com/enetx/surf v1.0.144
|
|
github.com/gofiber/fiber/v2 v2.52.5
|
|
github.com/ilyakaznacheev/cleanenv v1.5.0
|
|
github.com/jackc/pgx/v5 v5.7.4
|
|
github.com/pashagolub/pgxmock/v4 v4.6.0
|
|
github.com/pquerna/otp v1.5.0
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/sync v0.19.0
|
|
golang.org/x/time v0.14.0
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.2.1 // indirect
|
|
github.com/Masterminds/semver/v3 v3.4.0 // indirect
|
|
github.com/andybalholm/brotli v1.2.0 // indirect
|
|
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/enetx/http v1.0.19 // indirect
|
|
github.com/enetx/http2 v1.0.20 // indirect
|
|
github.com/enetx/iter v0.0.0-20250912135656-f1583323588f // indirect
|
|
github.com/enetx/uquic v0.0.0-20251211194956-3ebf03adbe9e // indirect
|
|
github.com/enetx/utls v0.0.0-20251024090823-efbd194d7328 // indirect
|
|
github.com/gaukas/clienthellod v0.4.2 // indirect
|
|
github.com/gaukas/godicttls v0.0.4 // indirect
|
|
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
|
github.com/google/gopacket v1.1.19 // indirect
|
|
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/joho/godotenv v1.5.1 // indirect
|
|
github.com/klauspost/compress v1.18.2 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.27.3 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/quic-go/qpack v0.5.1 // indirect
|
|
github.com/refraction-networking/utls v1.8.0 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.14.1 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.51.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
github.com/wzshiming/socks5 v0.6.0 // indirect
|
|
go.uber.org/mock v0.6.0 // indirect
|
|
golang.org/x/crypto v0.46.0 // indirect
|
|
golang.org/x/exp v0.0.0-20251209150349-8475f28825e9 // indirect
|
|
golang.org/x/mod v0.31.0 // indirect
|
|
golang.org/x/net v0.48.0 // indirect
|
|
golang.org/x/sys v0.39.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
golang.org/x/tools v0.40.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
|
|
)
|