Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ cc_library(
"Sources/CYaml/src/*.h",
]),
hdrs = ["Sources/CYaml/include/yaml.h"],
aspect_hints = ["@build_bazel_rules_swift//swift:auto_module"],
# Requires because of https://github.com/bazelbuild/bazel/pull/10143 otherwise host transition builds fail
copts = ["-fPIC"],
includes = ["Sources/CYaml/include"],
linkstatic = True,
tags = ["swift_module"],
visibility = ["//Tests:__subpackages__"],
)

Expand Down
9 changes: 7 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ module(
)

bazel_dep(name = "apple_support", version = "1.15.1")
bazel_dep(name = "rules_swift", version = "1.18.0", repo_name = "build_bazel_rules_swift", max_compatibility_level = 3)
bazel_dep(
name = "rules_swift",
version = "2.9.0",
repo_name = "build_bazel_rules_swift",
max_compatibility_level = 3,
)

bazel_dep(name = "platforms", version = "0.0.9", dev_dependency = True)
bazel_dep(name = "rules_apple", version = "3.5.1", dev_dependency = True)
bazel_dep(name = "rules_apple", version = "4.1.2", dev_dependency = True)
Loading