-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
3 changed files
with
118 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,42 @@ | ||
module github.com/cobolbaby/lineage | ||
|
||
go 1.17 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/lib/pq v1.10.4 | ||
github.com/lib/pq v1.10.9 | ||
github.com/mitchellh/copystructure v1.2.0 | ||
github.com/natefinch/lumberjack v2.0.0+incompatible | ||
github.com/neo4j/neo4j-go-driver/v4 v4.4.0 | ||
github.com/pganalyze/pg_query_go/v2 v2.1.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/tidwall/gjson v1.12.1 | ||
github.com/neo4j/neo4j-go-driver/v4 v4.4.7 | ||
github.com/pganalyze/pg_query_go/v5 v5.1.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/viper v1.18.2 | ||
github.com/tidwall/gjson v1.17.1 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.4.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/sagikazarmark/locafero v0.4.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.6.0 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.9.0 // indirect | ||
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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
Oops, something went wrong.