This repository has been archived on 2023-04-18. You can view files and clone it, but cannot push or open issues or pull requests.
notificationarr/go.mod

19 lines
463 B
Modula-2
Raw Normal View History

2022-07-11 04:59:24 +00:00
module gitea.dwysokinski.me/Kichiyaki/notificationarr
go 1.19
2022-07-13 05:15:29 +00:00
require (
2022-12-21 12:32:48 +00:00
github.com/go-chi/chi/v5 v5.0.8
chore(deps): update module github.com/google/go-cmp to v0.5.9 (#19) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/google/go-cmp](https://github.com/google/go-cmp) | require | patch | `v0.5.8` -> `v0.5.9` | --- ### Release Notes <details> <summary>google/go-cmp</summary> ### [`v0.5.9`](https://github.com/google/go-cmp/releases/tag/v0.5.9) [Compare Source](https://github.com/google/go-cmp/compare/v0.5.8...v0.5.9) Reporter changes: - ([#&#8203;299](https://github.com/google/go-cmp/issues/299)) Adjust heuristic for line-based versus byte-based diffing - ([#&#8203;306](https://github.com/google/go-cmp/issues/306)) Use `value.TypeString` in `PathStep.String` Code cleanup changes: - ([#&#8203;297](https://github.com/google/go-cmp/issues/297)) Use `reflect.Value.IsZero` - ([#&#8203;304](https://github.com/google/go-cmp/issues/304)) Format with Go 1.19 formatter - ([#&#8203;300](https://github.com/google/go-cmp/issues/300) )Fix typo in Result documentation - ([#&#8203;302](https://github.com/google/go-cmp/issues/302)) Pre-declare global type variables - ([#&#8203;309](https://github.com/google/go-cmp/issues/309)) Run tests on Go 1.19 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTAuMyIsInVwZGF0ZWRJblZlciI6IjMyLjE5MC4zIn0=--> Co-authored-by: Renovate <renovate@dwysokinski.me> Reviewed-on: https://gitea.dwysokinski.me/Kichiyaki/notificationarr/pulls/19 Co-authored-by: renovate <renovate@noreply.localhost> Co-committed-by: renovate <renovate@noreply.localhost>
2022-09-09 03:43:01 +00:00
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.3.0
2022-12-21 12:33:44 +00:00
github.com/stretchr/testify v1.8.1
)
2022-07-13 05:15:29 +00:00
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
2022-07-13 05:15:29 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
2022-07-13 05:15:29 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
)