Created
November 4, 2020 14:55
-
-
Save steakunderscore/e465fc6223081251139ed55fbad9c751 to your computer and use it in GitHub Desktop.
personal third_party/go/BUILD
This file contains hidden or 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
package(default_visibility = ["PUBLIC"]) | |
go_get( | |
name = "spf13_cobra", | |
get = "github.com/spf13/cobra", | |
licences = ["apache-2.0"], | |
revision = "v1.1.1", | |
deps = [ | |
":spf13_pflag", | |
], | |
) | |
go_get( | |
name = "spf13_pflag", | |
get = "github.com/spf13/pflag", | |
revision = "v1.0.5", | |
) | |
go_get( | |
name = "spf13_viper", | |
get = "github.com/spf13/viper", | |
licences = ["mit"], | |
revision = "v1.7.1", | |
deps = [ | |
":fsnotify_fsnotify", | |
":hashicorp_hcl", | |
":ini.v1", | |
":magiconair_properties", | |
":mitchellh_mapstructure", | |
":pelletier_go-toml", | |
":spf13_afero", | |
":spf13_cast", | |
":spf13_jwalterweatherman", | |
":spf13_pflag", | |
":subosito_gotenv", | |
":yaml.v2", | |
], | |
) | |
go_get( | |
name = "fsnotify_fsnotify", | |
get = "github.com/fsnotify/fsnotify", | |
revision = "v1.4.7", | |
deps = [ | |
":x_sys", | |
], | |
) | |
go_get( | |
name = "hashicorp_hcl", | |
get = "github.com/hashicorp/hcl/...", | |
revision = "v1.0.0", | |
) | |
go_get( | |
name = "magiconair_properties", | |
get = "github.com/magiconair/properties", | |
revision = "v1.8.1", | |
) | |
go_get( | |
name = "mitchellh_mapstructure", | |
get = "github.com/mitchellh/mapstructure", | |
revision = "v1.1.2", | |
) | |
go_get( | |
name = "pelletier_go-toml", | |
get = "github.com/pelletier/go-toml", | |
revision = "v1.2.0", | |
) | |
go_get( | |
name = "spf13_afero", | |
get = "github.com/spf13/afero", | |
install = [ | |
"", | |
"mem", | |
], | |
revision = "v1.1.2", | |
deps = [ | |
":x_sys", | |
":x_text", | |
], | |
) | |
go_get( | |
name = "x_text", | |
get = "golang.org/x/text", | |
install = [ | |
"transform", | |
"unicode/...", | |
], | |
revision = "v0.3.4", | |
) | |
go_get( | |
name = "x_sys", | |
get = "golang.org/x/sys", | |
install = [ | |
"unix", | |
"cpu", | |
"internal/unsafeheader", | |
], | |
revision = "bc7a7d42d5c30f4d0fe808715c002826ce2c624e", | |
) | |
go_get( | |
name = "spf13_cast", | |
get = "github.com/spf13/cast", | |
revision = "v1.3.0", | |
) | |
go_get( | |
name = "spf13_jwalterweatherman", | |
get = "github.com/spf13/jwalterweatherman", | |
revision = "v1.0.0", | |
) | |
go_get( | |
name = "stretchr_testify", | |
get = "github.com/stretchr/testify", | |
revision = "v1.3.0", | |
) | |
go_get( | |
name = "subosito_gotenv", | |
get = "github.com/subosito/gotenv", | |
revision = "v1.2.0", | |
) | |
go_get( | |
name = "ini.v1", | |
get = "gopkg.in/ini.v1", | |
revision = "v1.51.0", | |
) | |
go_get( | |
name = "yaml.v2", | |
get = "gopkg.in/yaml.v2", | |
revision = "v2.2.4", | |
) | |
go_get( | |
name = "mitchellh_go-homedir", | |
get = "github.com/mitchellh/go-homedir", | |
revision = "v1.1.0", | |
) | |
go_get( | |
name = "gorm", | |
get = "gorm.io/gorm", | |
install = [ | |
"", | |
"clause", | |
"migrator", | |
"schema", | |
"callbacks", | |
"logger", | |
"utils", | |
], | |
repo = "github.com/go-gorm/gorm", | |
revision = "v1.20.5", | |
deps = [ | |
":jinzhu_inflection", | |
":jinzhu_now", | |
], | |
) | |
go_get( | |
name = "jinzhu_inflection", | |
get = "github.com/jinzhu/inflection", | |
revision = "v1.0.0", | |
) | |
go_get( | |
name = "jinzhu_now", | |
get = "github.com/jinzhu/now", | |
revision = "v1.1.1", | |
) | |
go_get( | |
name = "gorm_sqlite", | |
get = "gorm.io/driver/sqlite", | |
repo = "github.com/go-gorm/sqlite", | |
revision = "v1.1.3", | |
deps = [ | |
":gorm", | |
":mattn_go-sqlite3", | |
], | |
) | |
go_get( | |
name = "mattn_go-sqlite3", | |
get = "github.com/mattn/go-sqlite3", | |
revision = "v1.14.4", | |
) | |
go_get( | |
name = "gorm_datatypes", | |
get = "gorm.io/datatypes", | |
repo = "github.com/go-gorm/datatypes", | |
revision = "v1.0.0", | |
deps = [ | |
":gorm", | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment