├── .github └── workflows │ ├── code-cov.yml │ ├── linux.yml │ ├── macos.yml │ └── window.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Serdepp_Structure.png ├── benchmark ├── benchmark.cpp ├── data_type_benchmark.cpp └── syntax_benchmark.cpp ├── cmake ├── cppm-tools-0.0.13 │ ├── add_cppm_target.cmake │ ├── core_dependencies.cmake │ ├── core_load.cmake │ ├── cppkg │ │ ├── define.cmake │ │ ├── download.cmake │ │ ├── find.cmake │ │ ├── search_cppkg.cmake │ │ └── updater.cmake │ ├── cppm │ │ ├── compiler_option.cmake │ │ ├── cppm_project.cmake │ │ ├── create_symlink.cmake │ │ ├── cxx_standard.cmake │ │ ├── setting.cmake │ │ ├── target_define.cmake │ │ ├── target_dependencies.cmake │ │ ├── target_install.cmake │ │ ├── uninstall.cmake │ │ └── workspace.cmake │ ├── download │ │ ├── git.cmake │ │ └── tool.cmake │ ├── set_cppm_install_prefix.cmake │ ├── system.cmake │ ├── toolchain.cmake │ ├── utility │ │ ├── cppm_print.cmake │ │ └── set_cmake_cache.cmake │ └── version.cmake ├── cppm-version.cmake └── cppm_loader.cmake ├── cppm.toml ├── examples ├── example.cpp ├── example1.cpp ├── flatten.cpp ├── parse_file.cpp ├── pointer.cpp ├── print.cpp ├── reflection.cpp ├── simple_example.cpp ├── struct_attribute.cpp ├── sugar.cpp ├── test.json ├── test.toml ├── test.yaml └── variant.cpp ├── include └── serdepp │ ├── adaptor │ ├── fmt.hpp │ ├── nlohmann_json.hpp │ ├── rapidjson.hpp │ ├── reflection.hpp │ ├── sstream.hpp │ ├── toml11.hpp │ └── yaml-cpp.hpp │ ├── attribute │ ├── algorithm.hpp │ ├── default.hpp │ ├── flatten.hpp │ ├── make_optional.hpp │ ├── meta.hpp │ ├── mutli_key.hpp │ ├── skip.hpp │ ├── string_convert.hpp │ └── value_or_struct.hpp │ ├── attributes.hpp │ ├── exception.hpp │ ├── meta.hpp │ ├── ostream.hpp │ ├── serde.hpp │ ├── serializer.hpp │ └── utility.hpp ├── src ├── to_static.cpp └── to_static.h ├── tests ├── nlohmann_json.cpp ├── rapid_json.cpp ├── reflection.cpp ├── serializer.cpp ├── test_struct.hpp ├── toml11.cpp └── yaml_cpp.cpp └── thirdparty ├── Catch2 ├── 2.9.1 │ ├── Catch2.cmake.in │ └── cppkg.toml └── 3.5.0 │ ├── Catch2.cmake.in │ └── cppkg.toml ├── RapidJSON ├── 1.1.1 │ ├── RapidJSON.cmake.in │ └── cppkg.toml └── git │ ├── cppkg.toml │ └── rapidjson.cmake.in ├── benchmark ├── 1.5.2 │ ├── benchmark.cmake.in │ └── cppkg.toml └── git │ ├── benchmark.cmake.in │ └── cppkg.toml ├── fmt ├── 10.2.0 │ ├── cppkg.toml │ └── fmt.cmake.in ├── 7.0.3 │ ├── cppkg.toml │ └── fmt.cmake.in ├── 7.1.3 │ ├── cppkg.toml │ └── fmt.cmake.in └── 8.0.1 │ ├── cppkg.toml │ └── fmt.cmake.in ├── magic_enum ├── 0.7.3 │ ├── cppkg.toml │ └── magic_enum.cmake.in └── 0.9.5 │ ├── cppkg.toml │ └── magic_enum.cmake.in ├── nameof ├── 0.10.0 │ ├── cppkg.toml │ └── nameof.cmake.in └── 0.10.3 │ ├── cppkg.toml │ └── nameof.cmake.in ├── nlohmann_json ├── 3.10.5 │ ├── cppkg.toml │ └── nlohmann_json.cmake.in ├── 3.11.3 │ ├── cppkg.toml │ └── nlohmann_json.cmake.in └── 3.9.1 │ ├── cppkg.toml │ └── nlohmann_json.cmake.in ├── range-v3 └── 0.11.0 │ ├── cppkg.toml │ └── range-v3.cmake.in ├── simdjson └── 0.9.7 │ ├── cppkg.toml │ └── simdjson.cmake.in ├── toml11 ├── 3.6.0 │ ├── cppkg.toml │ └── toml11.cmake.in ├── 3.7.0 │ ├── cppkg.toml │ └── toml11.cmake.in └── 3.7.1 │ ├── cppkg.toml │ └── toml11.cmake.in ├── tomlpp └── git │ ├── cppkg.toml │ └── tomlpp.cmake.in └── yaml-cpp ├── 0.6.3 ├── cppkg.toml └── yaml-cpp.cmake.in ├── 0.7.0 ├── cppkg.toml └── yaml-cpp.cmake.in └── 0.8.0 ├── cppkg.toml └── yaml-cpp.cmake.in /.github/workflows/code-cov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/.github/workflows/code-cov.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/window.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/.github/workflows/window.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .ccls-cache 3 | compile_commands.json 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/README.md -------------------------------------------------------------------------------- /Serdepp_Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/Serdepp_Structure.png -------------------------------------------------------------------------------- /benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /benchmark/data_type_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/benchmark/data_type_benchmark.cpp -------------------------------------------------------------------------------- /benchmark/syntax_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/benchmark/syntax_benchmark.cpp -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/add_cppm_target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/add_cppm_target.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/core_dependencies.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/core_load.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/core_load.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppkg/define.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppkg/download.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppkg/download.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppkg/find.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppkg/find.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppkg/search_cppkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppkg/search_cppkg.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppkg/updater.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppkg/updater.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/compiler_option.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/compiler_option.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/cppm_project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/cppm_project.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/create_symlink.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/create_symlink.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/cxx_standard.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/cxx_standard.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/setting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/setting.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/target_define.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/target_define.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/target_dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/target_dependencies.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/target_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/target_install.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/uninstall.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/cppm/workspace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/cppm/workspace.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/download/git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/download/git.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/download/tool.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/download/tool.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/set_cppm_install_prefix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/set_cppm_install_prefix.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/system.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/system.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/toolchain.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/utility/cppm_print.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/utility/cppm_print.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/utility/set_cmake_cache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm-tools-0.0.13/utility/set_cmake_cache.cmake -------------------------------------------------------------------------------- /cmake/cppm-tools-0.0.13/version.cmake: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /cmake/cppm-version.cmake: -------------------------------------------------------------------------------- 1 | set(CPPM_TOOLS_VERSION 0.0.13) 2 | -------------------------------------------------------------------------------- /cmake/cppm_loader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cmake/cppm_loader.cmake -------------------------------------------------------------------------------- /cppm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/cppm.toml -------------------------------------------------------------------------------- /examples/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/example.cpp -------------------------------------------------------------------------------- /examples/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/example1.cpp -------------------------------------------------------------------------------- /examples/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/flatten.cpp -------------------------------------------------------------------------------- /examples/parse_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/parse_file.cpp -------------------------------------------------------------------------------- /examples/pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/pointer.cpp -------------------------------------------------------------------------------- /examples/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/print.cpp -------------------------------------------------------------------------------- /examples/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/reflection.cpp -------------------------------------------------------------------------------- /examples/simple_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/simple_example.cpp -------------------------------------------------------------------------------- /examples/struct_attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/struct_attribute.cpp -------------------------------------------------------------------------------- /examples/sugar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/sugar.cpp -------------------------------------------------------------------------------- /examples/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/test.json -------------------------------------------------------------------------------- /examples/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/test.toml -------------------------------------------------------------------------------- /examples/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/test.yaml -------------------------------------------------------------------------------- /examples/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/examples/variant.cpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/fmt.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/nlohmann_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/nlohmann_json.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/rapidjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/rapidjson.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/reflection.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/sstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/sstream.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/toml11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/toml11.hpp -------------------------------------------------------------------------------- /include/serdepp/adaptor/yaml-cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/adaptor/yaml-cpp.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/algorithm.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/default.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/flatten.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/flatten.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/make_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/make_optional.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/meta.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/mutli_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/mutli_key.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/skip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/skip.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/string_convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/string_convert.hpp -------------------------------------------------------------------------------- /include/serdepp/attribute/value_or_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attribute/value_or_struct.hpp -------------------------------------------------------------------------------- /include/serdepp/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/attributes.hpp -------------------------------------------------------------------------------- /include/serdepp/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/exception.hpp -------------------------------------------------------------------------------- /include/serdepp/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/meta.hpp -------------------------------------------------------------------------------- /include/serdepp/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/ostream.hpp -------------------------------------------------------------------------------- /include/serdepp/serde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/serde.hpp -------------------------------------------------------------------------------- /include/serdepp/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/serializer.hpp -------------------------------------------------------------------------------- /include/serdepp/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/include/serdepp/utility.hpp -------------------------------------------------------------------------------- /src/to_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/src/to_static.cpp -------------------------------------------------------------------------------- /src/to_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/src/to_static.h -------------------------------------------------------------------------------- /tests/nlohmann_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/nlohmann_json.cpp -------------------------------------------------------------------------------- /tests/rapid_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/rapid_json.cpp -------------------------------------------------------------------------------- /tests/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/reflection.cpp -------------------------------------------------------------------------------- /tests/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/serializer.cpp -------------------------------------------------------------------------------- /tests/test_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/test_struct.hpp -------------------------------------------------------------------------------- /tests/toml11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/toml11.cpp -------------------------------------------------------------------------------- /tests/yaml_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/tests/yaml_cpp.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2/2.9.1/Catch2.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/Catch2/2.9.1/Catch2.cmake.in -------------------------------------------------------------------------------- /thirdparty/Catch2/2.9.1/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/Catch2/2.9.1/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/Catch2/3.5.0/Catch2.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/Catch2/3.5.0/Catch2.cmake.in -------------------------------------------------------------------------------- /thirdparty/Catch2/3.5.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/Catch2/3.5.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/RapidJSON/1.1.1/RapidJSON.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/RapidJSON/1.1.1/RapidJSON.cmake.in -------------------------------------------------------------------------------- /thirdparty/RapidJSON/1.1.1/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/RapidJSON/1.1.1/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/RapidJSON/git/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/RapidJSON/git/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/RapidJSON/git/rapidjson.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/RapidJSON/git/rapidjson.cmake.in -------------------------------------------------------------------------------- /thirdparty/benchmark/1.5.2/benchmark.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/benchmark/1.5.2/benchmark.cmake.in -------------------------------------------------------------------------------- /thirdparty/benchmark/1.5.2/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/benchmark/1.5.2/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/benchmark/git/benchmark.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/benchmark/git/benchmark.cmake.in -------------------------------------------------------------------------------- /thirdparty/benchmark/git/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/benchmark/git/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/fmt/10.2.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/10.2.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/fmt/10.2.0/fmt.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/10.2.0/fmt.cmake.in -------------------------------------------------------------------------------- /thirdparty/fmt/7.0.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/7.0.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/fmt/7.0.3/fmt.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/7.0.3/fmt.cmake.in -------------------------------------------------------------------------------- /thirdparty/fmt/7.1.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/7.1.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/fmt/7.1.3/fmt.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/7.1.3/fmt.cmake.in -------------------------------------------------------------------------------- /thirdparty/fmt/8.0.1/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/8.0.1/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/fmt/8.0.1/fmt.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/fmt/8.0.1/fmt.cmake.in -------------------------------------------------------------------------------- /thirdparty/magic_enum/0.7.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/magic_enum/0.7.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/magic_enum/0.7.3/magic_enum.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/magic_enum/0.7.3/magic_enum.cmake.in -------------------------------------------------------------------------------- /thirdparty/magic_enum/0.9.5/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/magic_enum/0.9.5/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/magic_enum/0.9.5/magic_enum.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/magic_enum/0.9.5/magic_enum.cmake.in -------------------------------------------------------------------------------- /thirdparty/nameof/0.10.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nameof/0.10.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/nameof/0.10.0/nameof.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nameof/0.10.0/nameof.cmake.in -------------------------------------------------------------------------------- /thirdparty/nameof/0.10.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nameof/0.10.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/nameof/0.10.3/nameof.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nameof/0.10.3/nameof.cmake.in -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.10.5/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.10.5/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.10.5/nlohmann_json.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.10.5/nlohmann_json.cmake.in -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.11.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.11.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.11.3/nlohmann_json.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.11.3/nlohmann_json.cmake.in -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.9.1/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.9.1/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/nlohmann_json/3.9.1/nlohmann_json.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/nlohmann_json/3.9.1/nlohmann_json.cmake.in -------------------------------------------------------------------------------- /thirdparty/range-v3/0.11.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/range-v3/0.11.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/range-v3/0.11.0/range-v3.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/range-v3/0.11.0/range-v3.cmake.in -------------------------------------------------------------------------------- /thirdparty/simdjson/0.9.7/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/simdjson/0.9.7/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/simdjson/0.9.7/simdjson.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/simdjson/0.9.7/simdjson.cmake.in -------------------------------------------------------------------------------- /thirdparty/toml11/3.6.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.6.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/toml11/3.6.0/toml11.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.6.0/toml11.cmake.in -------------------------------------------------------------------------------- /thirdparty/toml11/3.7.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.7.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/toml11/3.7.0/toml11.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.7.0/toml11.cmake.in -------------------------------------------------------------------------------- /thirdparty/toml11/3.7.1/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.7.1/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/toml11/3.7.1/toml11.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/toml11/3.7.1/toml11.cmake.in -------------------------------------------------------------------------------- /thirdparty/tomlpp/git/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/tomlpp/git/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/tomlpp/git/tomlpp.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/tomlpp/git/tomlpp.cmake.in -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.6.3/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.6.3/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.6.3/yaml-cpp.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.6.3/yaml-cpp.cmake.in -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.7.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.7.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.7.0/yaml-cpp.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.7.0/yaml-cpp.cmake.in -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.8.0/cppkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.8.0/cppkg.toml -------------------------------------------------------------------------------- /thirdparty/yaml-cpp/0.8.0/yaml-cpp.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/injae/serdepp/HEAD/thirdparty/yaml-cpp/0.8.0/yaml-cpp.cmake.in --------------------------------------------------------------------------------