Skip to content

Commit

Permalink
chore: update dependencies and test latest version of fsnotify
Browse files Browse the repository at this point in the history
  • Loading branch information
Cian911 committed Jul 28, 2024
1 parent c3e78bc commit 7554a8a
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 815 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ run:
@go run ./cmd/main.go

test-watcher:
@gotest -v ./watcher
@go test -v ./watcher

test-watcher-observe:
@gotest -v ./watcher -test.run TestObserve
@go test -v ./watcher -test.run TestObserve

test-event:
@gotest -v ./event
@go test -v ./event

test-utils:
@gotest -v ./utils
@go test -v ./utils

test-cmd:
@gotest -v ./cmd
@go test -v ./cmd

test-all: test-all test-watcher test-watcher-observe test-event test-utils test-cmd

Expand Down
38 changes: 20 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
module github.com/cian911/switchboard

go 1.17
go 1.22

require (
github.com/fsnotify/fsnotify v1.5.1
github.com/spf13/cobra v0.0.5
github.com/spf13/viper v1.10.0
github.com/fsnotify/fsnotify v1.7.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
)

require (
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.8 // indirect
gopkg.in/ini.v1 v1.66.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/fsnotify/fsnotify v1.5.1 => github.com/Cian911/fsnotify v1.5.2-0.20220220230351-4d6a6a3b3090
Loading

0 comments on commit 7554a8a

Please sign in to comment.