Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
stelzo committed Dec 5, 2024
1 parent 28dc95d commit b4f5c4f
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 22 deletions.
49 changes: 27 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,50 +1,55 @@
module github.com/dofusdude/ankama-discord-hooks

go 1.19
go 1.23

toolchain go1.23.0

require (
github.com/JohannesKaufmann/html-to-markdown v1.5.0
github.com/dofusdude/dodugo v0.8.2
github.com/go-chi/chi/v5 v5.0.12
github.com/JohannesKaufmann/html-to-markdown v1.6.0
github.com/dofusdude/dodugo v0.9.4
github.com/go-chi/chi/v5 v5.1.0
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.5.5
github.com/jackc/pgx/v5 v5.7.1
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/mmcdole/gofeed v1.3.0
github.com/prometheus/client_golang v1.19.0
github.com/rs/cors v1.10.1
github.com/prometheus/client_golang v1.20.5
github.com/rs/cors v1.11.1
github.com/steinfletcher/apitest v1.5.15
github.com/steinfletcher/apitest-jsonpath v1.7.2
github.com/stretchr/testify v1.9.0
golang.org/x/text v0.14.0
github.com/stretchr/testify v1.10.0
golang.org/x/text v0.21.0
)

require (
github.com/PaesslerAG/gval v1.2.2 // indirect
github.com/PaesslerAG/jsonpath v0.1.1 // indirect
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/PuerkitoBio/goquery v1.10.0 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mmcdole/goxpp v1.1.1-0.20240225020742-a0c311522b23 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/mmcdole/goxpp v1.1.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.48.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.61.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.16.0 // indirect
google.golang.org/protobuf v1.32.0 // indirect
golang.org/x/crypto v0.30.0 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
google.golang.org/protobuf v1.35.2 // indirect
gopkg.in/validator.v2 v2.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit b4f5c4f

Please sign in to comment.