Created
December 13, 2024 19:27
-
-
Save oconnor663/deaad1cacdcbf98e8e21f73b163827b5 to your computer and use it in GitHub Desktop.
Bazel rules_rust utoipa-swagger-ui build failure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package(default_visibility = ["//visibility:public"]) | |
load("@rules_rust//rust:defs.bzl", "rust_binary") | |
rust_binary( | |
name = "bin", | |
srcs = ["repro.rs"], | |
deps = [ | |
"@crates//:utoipa-swagger-ui", | |
], | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module( | |
name = "repro", | |
version = "0.1.0", | |
) | |
bazel_dep(name = "rules_rust", version = "0.55.6") | |
crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate") | |
crate.spec(package = "utoipa-swagger-ui", version = "8.0.3") | |
crate.from_specs() | |
use_repo(crate, "crates") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# empty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment