diff --git a/src/db/ent/BUILD.bazel b/src/db/ent/BUILD.bazel index b25b2b1..1f8459c 100644 --- a/src/db/ent/BUILD.bazel +++ b/src/db/ent/BUILD.bazel @@ -36,10 +36,10 @@ go_library( "//src/db/ent/predicate", "//src/db/ent/schema", "//src/db/ent/session", - "@com_github_facebook_ent//:ent", - "@com_github_facebook_ent//dialect", - "@com_github_facebook_ent//dialect/sql", - "@com_github_facebook_ent//dialect/sql/sqlgraph", - "@com_github_facebook_ent//schema/field", + "@com_github_facebook_ent//:go_default_library", + "@com_github_facebook_ent//dialect:go_default_library", + "@com_github_facebook_ent//dialect/sql:go_default_library", + "@com_github_facebook_ent//dialect/sql/sqlgraph:go_default_library", + "@com_github_facebook_ent//schema/field:go_default_library", ], ) diff --git a/src/db/ent/challenge/BUILD.bazel b/src/db/ent/challenge/BUILD.bazel index 7868d92..45c8b13 100644 --- a/src/db/ent/challenge/BUILD.bazel +++ b/src/db/ent/challenge/BUILD.bazel @@ -10,6 +10,6 @@ go_library( visibility = ["//visibility:public"], deps = [ "//src/db/ent/predicate", - "@com_github_facebook_ent//dialect/sql", + "@com_github_facebook_ent//dialect/sql:go_default_library", ], ) diff --git a/src/db/ent/enttest/BUILD.bazel b/src/db/ent/enttest/BUILD.bazel index 4583471..b583d35 100644 --- a/src/db/ent/enttest/BUILD.bazel +++ b/src/db/ent/enttest/BUILD.bazel @@ -8,6 +8,6 @@ go_library( deps = [ "//src/db/ent", "//src/db/ent/runtime", - "@com_github_facebook_ent//dialect/sql/schema", + "@com_github_facebook_ent//dialect/sql/schema:go_default_library", ], ) diff --git a/src/db/ent/guild/BUILD.bazel b/src/db/ent/guild/BUILD.bazel index c427ae2..54bc909 100644 --- a/src/db/ent/guild/BUILD.bazel +++ b/src/db/ent/guild/BUILD.bazel @@ -10,6 +10,6 @@ go_library( visibility = ["//visibility:public"], deps = [ "//src/db/ent/predicate", - "@com_github_facebook_ent//dialect/sql", + "@com_github_facebook_ent//dialect/sql:go_default_library", ], ) diff --git a/src/db/ent/migrate/BUILD.bazel b/src/db/ent/migrate/BUILD.bazel index 5fb935e..8d55c74 100644 --- a/src/db/ent/migrate/BUILD.bazel +++ b/src/db/ent/migrate/BUILD.bazel @@ -9,8 +9,8 @@ go_library( importpath = "github.com/roleypoly/roleypoly/src/db/ent/migrate", visibility = ["//visibility:public"], deps = [ - "@com_github_facebook_ent//dialect", - "@com_github_facebook_ent//dialect/sql/schema", - "@com_github_facebook_ent//schema/field", + "@com_github_facebook_ent//dialect:go_default_library", + "@com_github_facebook_ent//dialect/sql/schema:go_default_library", + "@com_github_facebook_ent//schema/field:go_default_library", ], ) diff --git a/src/db/ent/predicate/BUILD.bazel b/src/db/ent/predicate/BUILD.bazel index edfebc4..a060901 100644 --- a/src/db/ent/predicate/BUILD.bazel +++ b/src/db/ent/predicate/BUILD.bazel @@ -5,5 +5,5 @@ go_library( srcs = ["predicate.go"], importpath = "github.com/roleypoly/roleypoly/src/db/ent/predicate", visibility = ["//visibility:public"], - deps = ["@com_github_facebook_ent//dialect/sql"], + deps = ["@com_github_facebook_ent//dialect/sql:go_default_library"], ) diff --git a/src/db/ent/schema/BUILD.bazel b/src/db/ent/schema/BUILD.bazel index f667fcf..c87afb1 100644 --- a/src/db/ent/schema/BUILD.bazel +++ b/src/db/ent/schema/BUILD.bazel @@ -10,8 +10,8 @@ go_library( importpath = "github.com/roleypoly/roleypoly/src/db/ent/schema", visibility = ["//visibility:public"], deps = [ - "@com_github_facebook_ent//:ent", - "@com_github_facebook_ent//schema/field", - "@com_github_facebook_ent//schema/mixin", + "@com_github_facebook_ent//:go_default_library", + "@com_github_facebook_ent//schema/field:go_default_library", + "@com_github_facebook_ent//schema/mixin:go_default_library", ], ) diff --git a/src/db/ent/session/BUILD.bazel b/src/db/ent/session/BUILD.bazel index f11c826..458366c 100644 --- a/src/db/ent/session/BUILD.bazel +++ b/src/db/ent/session/BUILD.bazel @@ -10,6 +10,6 @@ go_library( visibility = ["//visibility:public"], deps = [ "//src/db/ent/predicate", - "@com_github_facebook_ent//dialect/sql", + "@com_github_facebook_ent//dialect/sql:go_default_library", ], ) diff --git a/src/discord-auth/BUILD.bazel b/src/discord-auth/BUILD.bazel index abf7dca..5eff71c 100644 --- a/src/discord-auth/BUILD.bazel +++ b/src/discord-auth/BUILD.bazel @@ -7,7 +7,7 @@ go_library( srcs = ["discord-auth.go"], importpath = "github.com/roleypoly/roleypoly/src/discord-auth", visibility = ["//visibility:private"], - deps = ["@org_uber_go_fx//:fx"], + deps = ["@org_uber_go_fx//:go_default_library"], ) go_binary( diff --git a/src/discord-bot/BUILD.bazel b/src/discord-bot/BUILD.bazel index 04fedc1..a03ff64 100644 --- a/src/discord-bot/BUILD.bazel +++ b/src/discord-bot/BUILD.bazel @@ -13,10 +13,10 @@ go_library( deps = [ "//src/common/version", "//src/discord-bot/internal/strings", - "@com_github_bwmarrin_discordgo//:discordgo", - "@com_github_joho_godotenv//autoload", - "@com_github_lampjaw_discordclient//:discordclient", - "@io_k8s_klog//:klog", + "@com_github_bwmarrin_discordgo//:go_default_library", + "@com_github_joho_godotenv//autoload:go_default_library", + "@com_github_lampjaw_discordclient//:go_default_library", + "@io_k8s_klog//:go_default_library", ], )