Skip to content

Commit 71d3744

Browse files
committed
feat: 0.7.0
1 parent 9648deb commit 71d3744

File tree

3 files changed

+24
-22
lines changed

3 files changed

+24
-22
lines changed

.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ startup --windows_enable_symlinks
22
common --enable_bzlmod
33
common --registry=https://raw.githubusercontent.com/ecsact-dev/bazel_registry/main
44
common --registry=https://raw.githubusercontent.com/bazelboost/registry/main
5+
common --registry=https://raw.githubusercontent.com/zaucy/bazel-central-registry/add-curl-config2 # temporary
56
common --registry=https://bcr.bazel.build
67
build --enable_platform_specific_config
7-
build --incompatible_use_platforms_repo_for_constraints
88
build --incompatible_enable_cc_toolchain_resolution
99
build --incompatible_strict_action_env
1010
build --enable_runfiles

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# bazel
22
/bazel-*
33
/user.bazelrc
4+
*.bazel.lock
45

56
# https://github.com/hedronvision/bazel-compile-commands-extractor
67
/compile_commands.json

MODULE.bazel

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,36 @@
11
module(name = "ecsact_sdk")
22

33
bazel_dep(name = "rules_cc", version = "0.0.9")
4-
bazel_dep(name = "platforms", version = "0.0.7")
5-
bazel_dep(name = "rules_pkg", version = "0.9.1")
6-
bazel_dep(name = "bazel_skylib", version = "1.4.2")
7-
bazel_dep(name = "ecsact_si_wasm", version = "0.1.1")
8-
bazel_dep(name = "rules_ecsact", version = "0.4.5")
9-
bazel_dep(name = "ecsact_rt_entt", version = "0.2.2")
10-
bazel_dep(name = "ecsact_codegen", version = "0.1.3")
11-
bazel_dep(name = "ecsact_parse", version = "0.3.3")
12-
bazel_dep(name = "ecsact_runtime", version = "0.5.4")
13-
bazel_dep(name = "ecsact_interpret", version = "0.5.3")
14-
bazel_dep(name = "ecsact_lang_cpp", version = "0.3.1")
15-
bazel_dep(name = "ecsact_cli", version = "0.2.3")
4+
bazel_dep(name = "platforms", version = "0.0.10")
5+
bazel_dep(name = "rules_pkg", version = "0.10.1")
6+
bazel_dep(name = "bazel_skylib", version = "1.6.1")
7+
bazel_dep(name = "ecsact_si_wasm", version = "0.1.2")
8+
bazel_dep(name = "rules_ecsact", version = "0.5.1")
9+
bazel_dep(name = "ecsact_rt_entt", version = "0.3.1")
10+
bazel_dep(name = "ecsact_codegen", version = "0.2.0")
11+
bazel_dep(name = "ecsact_parse", version = "0.4.0")
12+
bazel_dep(name = "ecsact_runtime", version = "0.6.1")
13+
bazel_dep(name = "ecsact_interpret", version = "0.6.1")
14+
bazel_dep(name = "ecsact_lang_cpp", version = "0.4.1")
15+
bazel_dep(name = "ecsact_cli", version = "0.3.6")
1616
bazel_dep(name = "ecsact_lsp_server", version = "0.2.0")
1717
bazel_dep(name = "ecsact_lang_json", version = "0.1.2")
1818
bazel_dep(name = "ecsact_lang_csharp", version = "0.1.2")
1919
bazel_dep(name = "boost.dll", version = "1.83.0.bzl.2")
2020
bazel_dep(name = "boost.process", version = "1.83.0.bzl.2")
21-
22-
# https://github.com/jbeder/yaml-cpp/issues/1229
23-
bazel_dep(name = "yaml-cpp")
24-
git_override(
25-
module_name = "yaml-cpp",
26-
commit = "37f1b8b8c9e5172ff3a79a3d5fdbb87f2994842b",
27-
remote = "https://github.com/jbeder/yaml-cpp",
28-
)
21+
bazel_dep(name = "yaml-cpp", version = "0.8.0")
2922

3023
bazel_dep(name = "bzlws")
3124
git_override(
3225
module_name = "bzlws",
33-
commit = "b90ae6b38e351979cae2af355f55d2c68d997030",
26+
commit = "b7b10a115da356ec23b0cf0c697919baa7b7301c",
3427
remote = "https://github.com/zaucy/bzlws",
3528
)
29+
30+
# TODO: https://github.com/bazelbuild/bazel-central-registry/pull/1916
31+
bazel_dep(name = "libarchive")
32+
git_override(
33+
module_name = "libarchive",
34+
commit = "7c331f92acea5243c195cdc6fb46ecfa11ce1ce2",
35+
remote = "https://github.com/zaucy/libarchive.git",
36+
)

0 commit comments

Comments
 (0)