├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── glaze.patch ├── src └── aglio │ ├── fmt.hpp │ ├── format.hpp │ ├── json.hpp │ ├── ostream.hpp │ ├── packager.hpp │ ├── remote_fmt.hpp │ ├── serialization_buffers.hpp │ ├── serializer.hpp │ └── type_descriptor.hpp └── tests ├── CMakeLists.txt ├── check_format.hpp ├── fmt.hpp ├── format.hpp ├── ostream.hpp ├── packager.hpp ├── test.cpp └── types.hpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glaze.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/glaze.patch -------------------------------------------------------------------------------- /src/aglio/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/fmt.hpp -------------------------------------------------------------------------------- /src/aglio/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/format.hpp -------------------------------------------------------------------------------- /src/aglio/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/json.hpp -------------------------------------------------------------------------------- /src/aglio/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/ostream.hpp -------------------------------------------------------------------------------- /src/aglio/packager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/packager.hpp -------------------------------------------------------------------------------- /src/aglio/remote_fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/remote_fmt.hpp -------------------------------------------------------------------------------- /src/aglio/serialization_buffers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/serialization_buffers.hpp -------------------------------------------------------------------------------- /src/aglio/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/serializer.hpp -------------------------------------------------------------------------------- /src/aglio/type_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/src/aglio/type_descriptor.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/check_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/check_format.hpp -------------------------------------------------------------------------------- /tests/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/fmt.hpp -------------------------------------------------------------------------------- /tests/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/format.hpp -------------------------------------------------------------------------------- /tests/ostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/ostream.hpp -------------------------------------------------------------------------------- /tests/packager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/packager.hpp -------------------------------------------------------------------------------- /tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/test.cpp -------------------------------------------------------------------------------- /tests/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominicpoeschko/aglio/HEAD/tests/types.hpp --------------------------------------------------------------------------------