pkgsrc-wip/cereal/PLIST

90 lines
3.6 KiB
Plaintext
Raw Normal View History

@comment $NetBSD$
include/cereal/access.hpp
include/cereal/archives/adapters.hpp
include/cereal/archives/binary.hpp
include/cereal/archives/json.hpp
include/cereal/archives/portable_binary.hpp
include/cereal/archives/xml.hpp
include/cereal/cereal.hpp
include/cereal/details/helpers.hpp
include/cereal/details/polymorphic_impl.hpp
include/cereal/details/polymorphic_impl_fwd.hpp
include/cereal/details/static_object.hpp
include/cereal/details/traits.hpp
include/cereal/details/util.hpp
include/cereal/external/base64.hpp
include/cereal/external/rapidjson/allocators.h
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/external/rapidjson/cursorstreamwrapper.h
include/cereal/external/rapidjson/document.h
include/cereal/external/rapidjson/encodedstream.h
include/cereal/external/rapidjson/encodings.h
include/cereal/external/rapidjson/error/en.h
include/cereal/external/rapidjson/error/error.h
include/cereal/external/rapidjson/filereadstream.h
include/cereal/external/rapidjson/filewritestream.h
include/cereal/external/rapidjson/fwd.h
include/cereal/external/rapidjson/internal/biginteger.h
include/cereal/external/rapidjson/internal/diyfp.h
include/cereal/external/rapidjson/internal/dtoa.h
include/cereal/external/rapidjson/internal/ieee754.h
include/cereal/external/rapidjson/internal/itoa.h
include/cereal/external/rapidjson/internal/meta.h
include/cereal/external/rapidjson/internal/pow10.h
include/cereal/external/rapidjson/internal/regex.h
include/cereal/external/rapidjson/internal/stack.h
include/cereal/external/rapidjson/internal/strfunc.h
include/cereal/external/rapidjson/internal/strtod.h
include/cereal/external/rapidjson/internal/swap.h
include/cereal/external/rapidjson/istreamwrapper.h
include/cereal/external/rapidjson/memorybuffer.h
include/cereal/external/rapidjson/memorystream.h
include/cereal/external/rapidjson/msinttypes/inttypes.h
include/cereal/external/rapidjson/msinttypes/stdint.h
include/cereal/external/rapidjson/ostreamwrapper.h
include/cereal/external/rapidjson/pointer.h
include/cereal/external/rapidjson/prettywriter.h
include/cereal/external/rapidjson/rapidjson.h
include/cereal/external/rapidjson/reader.h
include/cereal/external/rapidjson/schema.h
include/cereal/external/rapidjson/stream.h
include/cereal/external/rapidjson/stringbuffer.h
include/cereal/external/rapidjson/writer.h
include/cereal/external/rapidxml/license.txt
include/cereal/external/rapidxml/manual.html
include/cereal/external/rapidxml/rapidxml.hpp
include/cereal/external/rapidxml/rapidxml_iterators.hpp
include/cereal/external/rapidxml/rapidxml_print.hpp
include/cereal/external/rapidxml/rapidxml_utils.hpp
include/cereal/macros.hpp
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/specialize.hpp
include/cereal/types/array.hpp
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/types/atomic.hpp
include/cereal/types/base_class.hpp
include/cereal/types/bitset.hpp
include/cereal/types/boost_variant.hpp
include/cereal/types/chrono.hpp
include/cereal/types/common.hpp
include/cereal/types/complex.hpp
include/cereal/types/concepts/pair_associative_container.hpp
include/cereal/types/deque.hpp
include/cereal/types/forward_list.hpp
include/cereal/types/functional.hpp
include/cereal/types/list.hpp
include/cereal/types/map.hpp
include/cereal/types/memory.hpp
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/types/optional.hpp
include/cereal/types/polymorphic.hpp
include/cereal/types/queue.hpp
include/cereal/types/set.hpp
include/cereal/types/stack.hpp
include/cereal/types/string.hpp
include/cereal/types/tuple.hpp
include/cereal/types/unordered_map.hpp
include/cereal/types/unordered_set.hpp
include/cereal/types/utility.hpp
include/cereal/types/valarray.hpp
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/types/variant.hpp
include/cereal/types/vector.hpp
wip/cereal: Upgrade from 1.2.2 to 1.3.0. Tested as a dependency of wip/PrusaSlicer. From https://github.com/USCiLab/cereal/releases/tag/v1.3.0 This is a feature and bug fix release for cereal. This release contains a few new features, numerous quality of life improvements, and bug fixes. Many of these come from community contributions. With this release, the develop branch is being removed in favor of a single default branch. This means that tagged releases should be used in favor of trusting the master branch as being stable. The development branch for documentation, gh-pages-develop, is also being removed. This change comes with two small side benefits: pull requests will always be against the correct branch, and it will be easy to see development activity at a glance. New features include: - Deferred serialization for smart pointers (#185) - Initial support for C++17 standard library variant and optional (thanks to @arximboldi, #448) - Support for std::atomic (thanks to @bluescarni, #277) Fixes and enhancements include: - Vastly improved continuous integration testing (#568, #569) - Fixed several issues related to compilation on newer compilers (#579, #587, #515) - Fixed warnings with -Wconversion and -Wdocumentation (thanks to @WSoptics, #423) - Performance improvements for polymorphic serialization (#354) Minor fixes and enhancements include: - Fixed a bug related to CEREAL_REGISTER_DYNAMIC_INIT with shared libraries (thanks to @M2tM, #523) - Avoid unnecessary undefined behavior with StaticObject (thanks to @erichkeane, #470) - New version.hpp file describes cereal version (#444) - Ability to disable size=dynamic attribute in the XML archive (thanks to @hoensr, #401) Other Notes - The static checking for minimal serialization has been relaxed as there were many legitimate cases it was interfering with (thanks to @h-2, #565)
2020-10-12 13:34:06 +00:00
include/cereal/version.hpp
share/cmake/cereal/cereal-config.cmake