Skip to content

Commit

Permalink
feat: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sascha-andres committed May 7, 2024
1 parent ae31a10 commit 4c2e24a
Show file tree
Hide file tree
Showing 13 changed files with 1,251 additions and 121 deletions.
15 changes: 8 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ module github.com/sascha-andres/go-logsink
go 1.13

require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/google/gops v0.3.28
github.com/nightlyone/lockfile v1.0.0
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.17.0
github.com/spf13/viper v1.18.2
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
golang.org/x/net v0.18.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/net v0.25.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20240506185236-b8a5c65736ae // indirect
google.golang.org/grpc v1.63.2
google.golang.org/protobuf v1.34.1
)
660 changes: 612 additions & 48 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion v2/docs/go-logsink.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ To do this start a server and connect any number of clients.
* [go-logsink doc](go-logsink_doc.md) - Write out standard documentation
* [go-logsink listen](go-logsink_listen.md) - Start a server instance of go-logsink

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ See each sub-command's help for details on how to use the generated script.
* [go-logsink completion powershell](go-logsink_completion_powershell.md) - Generate the autocompletion script for powershell
* [go-logsink completion zsh](go-logsink_completion_zsh.md) - Generate the autocompletion script for zsh

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_completion_bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ go-logsink completion bash

* [go-logsink completion](go-logsink_completion.md) - Generate the autocompletion script for the specified shell

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_completion_fish.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ go-logsink completion fish [flags]

* [go-logsink completion](go-logsink_completion.md) - Generate the autocompletion script for the specified shell

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_completion_powershell.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ go-logsink completion powershell [flags]

* [go-logsink completion](go-logsink_completion.md) - Generate the autocompletion script for the specified shell

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_completion_zsh.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ go-logsink completion zsh [flags]

* [go-logsink completion](go-logsink_completion.md) - Generate the autocompletion script for the specified shell

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ go-logsink connect [flags]

* [go-logsink](go-logsink.md) - go-logsink is a simplistic log aggregator

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ go-logsink doc [flags]

* [go-logsink](go-logsink.md) - go-logsink is a simplistic log aggregator

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
2 changes: 1 addition & 1 deletion v2/docs/go-logsink_listen.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ go-logsink listen [flags]

* [go-logsink](go-logsink.md) - go-logsink is a simplistic log aggregator

###### Auto generated by spf13/cobra on 20-Oct-2023
###### Auto generated by spf13/cobra on 7-May-2024
15 changes: 8 additions & 7 deletions v2/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ module github.com/sascha-andres/go-logsink/v2
go 1.16

require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/fatih/color v1.16.0
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/google/gops v0.3.28
github.com/nightlyone/lockfile v1.0.0
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.17.0
go.starlark.net v0.0.0-20231101134539-556fd59b42f6
github.com/spf13/viper v1.18.2
go.starlark.net v0.0.0-20240411212711-9b43f0afd521
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240506185236-b8a5c65736ae // indirect
google.golang.org/grpc v1.63.2
google.golang.org/protobuf v1.34.1
)
Loading

0 comments on commit 4c2e24a

Please sign in to comment.