comparison MODULE.bazel @ 18:fa2b8af609d9

[Seobeo] Fixed a bug with pathing. Support SSL.
author June Park <parkjune1995@gmail.com>
date Mon, 06 Oct 2025 08:21:34 -0700
parents de54585a40f1
children 7d3fa1a7a854
comparison
equal deleted inserted replaced
17:d97ec3ded2ae 18:fa2b8af609d9
1 bazel_dep(name = "rules_cc", version = "0.1.1") 1 bazel_dep(name = "rules_cc", version = "0.1.1")
2 bazel_dep(name = "platforms", version = "0.0.11") 2 bazel_dep(name = "platforms", version = "0.0.11")
3 bazel_dep(name = "bazel_skylib", version = "1.8.2") 3 bazel_dep(name = "bazel_skylib", version = "1.8.2")
4 bazel_dep(name = "openssl", version = "3.3.1.bcr.7")
4 5
5 http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") 6 http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
7
8 # Bun
6 http_file( 9 http_file(
7 name = "bun_darwin_arm64_zip", 10 name = "bun_darwin_arm64_zip",
8 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-darwin-aarch64.zip", 11 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-darwin-aarch64.zip",
9 sha256 = "22f5fa3fff72b0d3b8e7e0f8051ecadf2e41920d474ac62db5279144809c9005", 12 sha256 = "22f5fa3fff72b0d3b8e7e0f8051ecadf2e41920d474ac62db5279144809c9005",
10 ) 13 )
11
12
13 http_file( 14 http_file(
14 name = "bun_linux_aarch64_zip", 15 name = "bun_linux_aarch64_zip",
15 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-linux-aarch64.zip", 16 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-linux-aarch64.zip",
16 sha256 = "6a7a98c546d084a845deda62eb2a5b94a6a14a63ea81cf9186d46bf55bf910a9", 17 sha256 = "6a7a98c546d084a845deda62eb2a5b94a6a14a63ea81cf9186d46bf55bf910a9",
17 ) 18 )
18