mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-14 01:24:54 +00:00
* Update go-chi dependency to v5 * Update gofrs/uuid dependency to v5 * Update gorilla/mux dependency to v1.8.1 * Update go-humanize dependency to v1.0.1 * Update mxj dependency to v2.7.0 * Update fsnotify dependency to v1.7.0 * Update Go versions in GH build workflow * Update gopkg.in/yaml.v2 indirect dependency to v2.4.0 * Bump GH actions
21 lines
523 B
Modula-2
21 lines
523 B
Modula-2
module github.com/adnanh/webhook
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/clbanning/mxj/v2 v2.7.0
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/ghodss/yaml v1.0.0
|
|
github.com/go-chi/chi/v5 v5.0.12
|
|
github.com/gofrs/uuid/v5 v5.0.0
|
|
github.com/gorilla/mux v1.8.1
|
|
golang.org/x/sys v0.18.0
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|