comparison MODULE.bazel @ 37:fb9bcd3145cb

[ReactGames] Few games I made using react just to practice few things.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:22:47 -0800
parents 7d3fa1a7a854
children b9a40c633c93
comparison
equal deleted inserted replaced
36:84672efec192 37:fb9bcd3145cb
1 bazel_dep(name = "rules_cc", version = "0.1.1") 1 bazel_dep(name = "rules_cc", version = "0.2.14")
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 bazel_dep(name = "openssl", version = "3.3.1.bcr.7")
5 bazel_dep(name = "rules_python", version = "1.7.0")
6
5 7
6 http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") 8 http_file = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
7 9
8 # Bun 10 # Bun
9 http_file( 11 http_file(
19 http_file( 21 http_file(
20 name = "bun_linux_x86_zip", 22 name = "bun_linux_x86_zip",
21 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-linux-x64.zip", 23 url = "https://github.com/oven-sh/bun/releases/download/bun-v1.2.23/bun-linux-x64.zip",
22 sha256 = "cf0ed0a920799d576ffde4e0cae66d732bf23c2530407f26f59c7831dffe1f0e", 24 sha256 = "cf0ed0a920799d576ffde4e0cae66d732bf23c2530407f26f59c7831dffe1f0e",
23 ) 25 )
26
27 # Bring in pip support
28 use_extension("@rules_python//python/extensions:pip.bzl", "pip")
29 pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
30
31 # Point to your requirements file
32 pip.install(requirements = "//:requirements.txt")
33
34 # Register the pip repo so you can depend on it
35 use_repo(pip, "pip_deps")