-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMODULE.bazel
More file actions
18 lines (13 loc) · 1.75 KB
/
Copy pathMODULE.bazel
File metadata and controls
18 lines (13 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Godcoder — Bazel module (Go side). Rust crates build with native cargo."""
module(
name = "godcoder",
version = "0.1.0",
)
bazel_dep(name = "rules_go", version = "0.59.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "gazelle", version = "0.47.0", repo_name = "bazel_gazelle")
go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
go_sdk.download(version = "1.25.6")
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
go_deps.from_file(go_mod = "//:go.mod")
use_repo(go_deps, "com_github_anthropics_anthropic_sdk_go", "com_github_aws_aws_sdk_go_v2", "com_github_aws_aws_sdk_go_v2_config", "com_github_aws_aws_sdk_go_v2_credentials", "com_github_aws_aws_sdk_go_v2_service_s3", "com_github_aws_smithy_go", "com_github_falkordb_falkordb_go_v2", "com_github_gin_contrib_cors", "com_github_gin_contrib_zap", "com_github_gin_gonic_gin", "com_github_go_gorm_caches_v4", "com_github_google_uuid", "com_github_hibiken_asynq", "com_github_hibiken_asynqmon", "com_github_knadh_koanf_parsers_dotenv", "com_github_knadh_koanf_providers_confmap", "com_github_knadh_koanf_providers_env", "com_github_knadh_koanf_providers_file", "com_github_knadh_koanf_v2", "com_github_lib_pq", "com_github_openai_openai_go", "com_github_pkoukk_tiktoken_go", "com_github_pkoukk_tiktoken_go_loader", "com_github_qdrant_go_client", "com_github_redis_go_redis_v9", "com_github_smacker_go_tree_sitter", "com_github_uptrace_opentelemetry_go_extra_otelgorm", "dev_resty_v3", "io_gorm_datatypes", "io_gorm_driver_postgres", "io_gorm_gorm", "io_opentelemetry_go_otel", "io_opentelemetry_go_otel_trace", "org_golang_google_grpc", "org_golang_x_sync", "org_golang_x_sys", "org_uber_go_dig", "org_uber_go_zap")
# use_repo(go_deps, ...) entries are managed by `bazel mod tidy`.