| workspace(name = "examples") |
| |
| load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| local_repository( |
| name = "io_bazel_rules_rust", |
| path = "..", |
| ) |
| |
| load("@io_bazel_rules_rust//rust:repositories.bzl", "rust_repositories") |
| |
| rust_repositories() |
| |
| http_archive( |
| name = "libc", |
| build_file = "@//:libc.BUILD", |
| sha256 = "1ac4c2ac6ed5a8fb9020c166bc63316205f1dc78d4b964ad31f4f21eb73f0c6d", |
| strip_prefix = "libc-0.2.20", |
| urls = [ |
| "https://mirror.bazel.build/github.com/rust-lang/libc/archive/0.2.20.zip", |
| "https://github.com/rust-lang/libc/archive/0.2.20.zip", |
| ], |
| ) |
| |
| load("@io_bazel_rules_rust//proto:repositories.bzl", "rust_proto_repositories") |
| |
| rust_proto_repositories() |
| |
| http_archive( |
| name = "bazel_skylib", |
| sha256 = "eb5c57e4c12e68c0c20bc774bfbc60a568e800d025557bc4ea022c6479acc867", |
| strip_prefix = "bazel-skylib-0.6.0", |
| urls = [ |
| "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/archive/0.6.0.tar.gz", |
| "https://github.com/bazelbuild/bazel-skylib/archive/0.6.0.tar.gz", |
| ], |
| ) |
| |
| http_archive( |
| name = "build_bazel_rules_nodejs", |
| url = "https://github.com/bazelbuild/rules_nodejs/archive/0.16.2.zip", |
| strip_prefix = "rules_nodejs-0.16.2", |
| sha256 = "9b72bb0aea72d7cbcfc82a01b1e25bf3d85f791e790ddec16c65e2d906382ee0" |
| ) |
| |
| load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories", "npm_install") |
| node_repositories() |
| |
| # Dependencies for the @examples//hello_world_wasm example. |
| npm_install( |
| name = "npm", |
| package_json = "@io_bazel_rules_rust//:package.json", |
| package_lock_json = "@io_bazel_rules_rust//:package-lock.json", |
| ) |
| |
| load("@io_bazel_rules_rust//bindgen:repositories.bzl", "rust_bindgen_repositories") |
| |
| rust_bindgen_repositories() |
| |
| load("@io_bazel_rules_rust//wasm_bindgen:repositories.bzl", "rust_wasm_bindgen_repositories") |
| |
| rust_wasm_bindgen_repositories() |
| |
| load("@io_bazel_rules_rust//:workspace.bzl", "bazel_version") |
| |
| bazel_version(name = "bazel_version") |