diff options
-rw-r--r-- | apworld/requirements.txt | 2 | ||||
-rw-r--r-- | tools/assign_ids/main.cpp | 1 | ||||
-rw-r--r-- | tools/util/godot_scene.cpp | 6 | ||||
-rw-r--r-- | vcpkg.json | 2 |
4 files changed, 5 insertions, 6 deletions
diff --git a/apworld/requirements.txt b/apworld/requirements.txt index b701d11..49ca0a7 100644 --- a/apworld/requirements.txt +++ b/apworld/requirements.txt | |||
@@ -1 +1 @@ | |||
protobuf>=5.29.3 \ No newline at end of file | protobuf==3.20.3 \ No newline at end of file | ||
diff --git a/tools/assign_ids/main.cpp b/tools/assign_ids/main.cpp index d212767..ee55338 100644 --- a/tools/assign_ids/main.cpp +++ b/tools/assign_ids/main.cpp | |||
@@ -2,6 +2,7 @@ | |||
2 | #include <google/protobuf/text_format.h> | 2 | #include <google/protobuf/text_format.h> |
3 | 3 | ||
4 | #include <cstdint> | 4 | #include <cstdint> |
5 | #include <filesystem> | ||
5 | #include <fstream> | 6 | #include <fstream> |
6 | #include <iostream> | 7 | #include <iostream> |
7 | #include <map> | 8 | #include <map> |
diff --git a/tools/util/godot_scene.cpp b/tools/util/godot_scene.cpp index 1e77c9e..f788d21 100644 --- a/tools/util/godot_scene.cpp +++ b/tools/util/godot_scene.cpp | |||
@@ -1,10 +1,8 @@ | |||
1 | #include "godot_scene.h" | 1 | #include "godot_scene.h" |
2 | 2 | ||
3 | #include <absl/strings/str_split.h> | ||
4 | #include <absl/strings/string_view.h> | ||
5 | |||
6 | #include <fstream> | 3 | #include <fstream> |
7 | #include <sstream> | 4 | #include <sstream> |
5 | #include <string_view> | ||
8 | #include <variant> | 6 | #include <variant> |
9 | 7 | ||
10 | namespace com::fourisland::lingo2_archipelago { | 8 | namespace com::fourisland::lingo2_archipelago { |
@@ -23,7 +21,7 @@ struct Heading { | |||
23 | GodotInstanceType instance_type; | 21 | GodotInstanceType instance_type; |
24 | }; | 22 | }; |
25 | 23 | ||
26 | Heading ParseTscnHeading(absl::string_view line) { | 24 | Heading ParseTscnHeading(std::string_view line) { |
27 | std::string original_line(line); | 25 | std::string original_line(line); |
28 | Heading heading; | 26 | Heading heading; |
29 | 27 | ||
diff --git a/vcpkg.json b/vcpkg.json index 5a1975d..ba6833f 100644 --- a/vcpkg.json +++ b/vcpkg.json | |||
@@ -7,7 +7,7 @@ | |||
7 | "overrides": [ | 7 | "overrides": [ |
8 | { | 8 | { |
9 | "name": "protobuf", | 9 | "name": "protobuf", |
10 | "version": "5.29.3" | 10 | "version": "3.21.12" |
11 | } | 11 | } |
12 | ] | 12 | ] |
13 | } \ No newline at end of file | 13 | } \ No newline at end of file |