diff options
| author | Bernhard Guillon <Bernhard.Guillon@begu.org> | 2026-07-07 11:22:55 +0200 |
|---|---|---|
| committer | Bernhard Guillon <Bernhard.Guillon@begu.org> | 2026-07-07 11:22:55 +0200 |
| commit | 834eaea27ea026057e86022cd651b1ad8009cb1b (patch) | |
| tree | d0c213216538a2dccdc1121acd1d8d2d6fff0c46 /go.mod | |
| parent | b912ad466560d36b80eca0a03fca967bf1769898 (diff) | |
| download | sourcewatch-834eaea27ea026057e86022cd651b1ad8009cb1b.tar.gz sourcewatch-834eaea27ea026057e86022cd651b1ad8009cb1b.zip | |
Downgrade dependencies for Go 1.21 compatibility
- fsnotify v1.7.0 (was v1.10.1, required Go 1.23)
- x/sys v0.4.0 (was v0.13.0, required Go 1.23)
- go.mod: go 1.21 (no toolchain directive)
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,10 +1,10 @@ module sourcewatch -go 1.23 +go 1.21 require ( - github.com/fsnotify/fsnotify v1.10.1 + github.com/fsnotify/fsnotify v1.7.0 github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 ) -require golang.org/x/sys v0.13.0 // indirect +require golang.org/x/sys v0.4.0 // indirect |
