-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1da934
commit f73e0b1
Showing
2 changed files
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
module github.com/toni-moreno/syncflux | ||
|
||
go 1.13 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gammazero/deque v0.0.0-20200310222745-50fa758af896 // indirect | ||
github.com/gammazero/workerpool v0.0.0-20200311205957-7b00833861c6 | ||
github.com/go-macaron/binding v1.1.0 | ||
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect | ||
github.com/go-macaron/session v0.0.0-20200329073812-7d919ce6a8d2 | ||
github.com/go-macaron/toolbox v0.0.0-20200329073429-4401f4ce0f55 | ||
github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d | ||
github.com/sirupsen/logrus v1.5.0 | ||
github.com/spf13/viper v1.6.3 | ||
gopkg.in/macaron.v1 v1.3.5 | ||
) | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gammazero/deque v0.0.0-20200310222745-50fa758af896 // indirect | ||
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/mitchellh/mapstructure v1.2.3 // indirect | ||
github.com/pelletier/go-toml v1.7.0 // indirect | ||
github.com/sirupsen/logrus v1.5.0 | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.6.3 | ||
github.com/stretchr/testify v1.5.1 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/unknwon/com v1.0.1 // indirect | ||
golang.org/x/crypto v0.0.0-20200427165652-729f1e841bcc // indirect | ||
golang.org/x/sys v0.0.0-20200427175716-29b57079015a // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
gopkg.in/ini.v1 v1.55.0 // indirect | ||
gopkg.in/macaron.v1 v1.3.5 | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
) |