yas/7.1.0

Yet Another Serialization
Recipe info
2023-07-17

Available packages
Header Only

Install
Add the following line to your conanfile.txt:
[requires]
yas/7.1.0

Using yas

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
yas/7.1.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("yas/7.1.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): yas
  • CMake target name(s): yas::yas
  • pkg-config file name(s): yas.pc

A simple use case using the CMake file name and the global target:

# ...
find_package(yas REQUIRED)
# ...
target_link_libraries(YOUR_TARGET yas::yas)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the yas homepage listed above:

#include "yas/abseil_types.hpp"
#include "yas/binary_iarchive.hpp"
#include "yas/binary_oarchive.hpp"
#include "yas/boost_types.hpp"
#include "yas/buffers.hpp"
#include "yas/count_streams.hpp"
#include "yas/defaul_traits.hpp"
#include "yas/detail/config/compiler/clang.hpp"
#include "yas/detail/config/compiler/gcc.hpp"
#include "yas/detail/config/compiler/intel.hpp"
#include "yas/detail/config/compiler/msvc.hpp"
#include "yas/detail/config/config.hpp"
#include "yas/detail/config/endian.hpp"
#include "yas/detail/io/binary_streams.hpp"
#include "yas/detail/io/endian_conv.hpp"
#include "yas/detail/io/exception_base.hpp"
#include "yas/detail/io/header.hpp"
#include "yas/detail/io/io_exceptions.hpp"
#include "yas/detail/io/json_streams.hpp"
#include "yas/detail/io/serialization_exceptions.hpp"
#include "yas/detail/io/text_streams.hpp"
#include "yas/detail/preprocessor/auto_rec.hpp"
#include "yas/detail/preprocessor/bitand.hpp"
#include "yas/detail/preprocessor/bool.hpp"
#include "yas/detail/preprocessor/cat.hpp"
#include "yas/detail/preprocessor/comma.hpp"
#include "yas/detail/preprocessor/comma_if.hpp"
#include "yas/detail/preprocessor/compl.hpp"
#include "yas/detail/preprocessor/config.hpp"
#include "yas/detail/preprocessor/dec.hpp"
#include "yas/detail/preprocessor/empty.hpp"
#include "yas/detail/preprocessor/enum_params.hpp"
#include "yas/detail/preprocessor/equal.hpp"
#include "yas/detail/preprocessor/error.hpp"
#include "yas/detail/preprocessor/expr_if.hpp"
#include "yas/detail/preprocessor/expr_iif.hpp"
#include "yas/detail/preprocessor/if.hpp"
#include "yas/detail/preprocessor/iif.hpp"
#include "yas/detail/preprocessor/inc.hpp"
#include "yas/detail/preprocessor/not_equal.hpp"
#include "yas/detail/preprocessor/overload.hpp"
#include "yas/detail/preprocessor/preprocessor.hpp"
#include "yas/detail/preprocessor/rep_for.hpp"
#include "yas/detail/preprocessor/rep_for_impl.hpp"
#include "yas/detail/preprocessor/rep_for_impl_dmc.hpp"
#include "yas/detail/preprocessor/rep_for_impl_edg.hpp"
#include "yas/detail/preprocessor/rep_for_impl_msvc.hpp"
#include "yas/detail/preprocessor/repeat.hpp"
#include "yas/detail/preprocessor/seq_elem.hpp"
#include "yas/detail/preprocessor/seq_for_each.hpp"
#include "yas/detail/preprocessor/seq_for_each_i.hpp"
#include "yas/detail/preprocessor/seq_seq.hpp"
#include "yas/detail/preprocessor/seq_size.hpp"
#include "yas/detail/preprocessor/stringize.hpp"
#include "yas/detail/preprocessor/tuple_eat.hpp"
#include "yas/detail/preprocessor/tuple_elem.hpp"
#include "yas/detail/preprocessor/tuple_rem.hpp"
#include "yas/detail/preprocessor/tuple_size.hpp"
#include "yas/detail/preprocessor/tuple_to_seq.hpp"
#include "yas/detail/preprocessor/variadic_elem.hpp"
#include "yas/detail/preprocessor/variadic_size.hpp"
#include "yas/detail/tools/base64.hpp"
#include "yas/detail/tools/base_object.hpp"
#include "yas/detail/tools/cast.hpp"
#include "yas/detail/tools/ctmap.hpp"
#include "yas/detail/tools/ctsort.hpp"
#include "yas/detail/tools/fnv1a.hpp"
#include "yas/detail/tools/json_tools.hpp"
#include "yas/detail/tools/limit.hpp"
#include "yas/detail/tools/limit_exceptions.hpp"
#include "yas/detail/tools/noncopyable.hpp"
#include "yas/detail/tools/rapidjson_dtoa.hpp"
#include "yas/detail/tools/save_load_string.hpp"
#include "yas/detail/tools/tuple_element_name.hpp"
#include "yas/detail/tools/tuple_element_switch.hpp"
#include "yas/detail/tools/utf8conv.hpp"
#include "yas/detail/type_traits/has_function_serialize.hpp"
#include "yas/detail/type_traits/has_memfn_serialize.hpp"
#include "yas/detail/type_traits/serializer.hpp"
#include "yas/detail/type_traits/type_traits.hpp"
#include "yas/detail/type_traits/typeinfo.hpp"
#include "yas/file_streams.hpp"
#include "yas/json_iarchive.hpp"
#include "yas/json_oarchive.hpp"
#include "yas/mem_streams.hpp"
#include "yas/null_streams.hpp"
#include "yas/object.hpp"
#include "yas/serialize.hpp"
#include "yas/std_streams.hpp"
#include "yas/std_traits.hpp"
#include "yas/std_types.hpp"
#include "yas/text_iarchive.hpp"
#include "yas/text_oarchive.hpp"
#include "yas/tools/archinfo.hpp"
#include "yas/tools/hexdump.hpp"
#include "yas/tools/wrap_asis.hpp"
#include "yas/tools/wrap_init.hpp"
#include "yas/types/abseil/btree_map.hpp"
#include "yas/types/abseil/flat_hash_map.hpp"
#include "yas/types/boost/array.hpp"
#include "yas/types/boost/chrono.hpp"
#include "yas/types/boost/container_deque.hpp"
#include "yas/types/boost/container_flat_map.hpp"
#include "yas/types/boost/container_flat_multimap.hpp"
#include "yas/types/boost/container_flat_multiset.hpp"
#include "yas/types/boost/container_flat_set.hpp"
#include "yas/types/boost/container_list.hpp"
#include "yas/types/boost/container_map.hpp"
#include "yas/types/boost/container_multimap.hpp"
#include "yas/types/boost/container_multiset.hpp"
#include "yas/types/boost/container_set.hpp"
#include "yas/types/boost/container_slist.hpp"
#include "yas/types/boost/container_stable_vector.hpp"
#include "yas/types/boost/container_static_vector.hpp"
#include "yas/types/boost/container_string.hpp"
#include "yas/types/boost/container_vector.hpp"
#include "yas/types/boost/container_wstring.hpp"
#include "yas/types/boost/fusion_list.hpp"
#include "yas/types/boost/fusion_map.hpp"
#include "yas/types/boost/fusion_pair.hpp"
#include "yas/types/boost/fusion_set.hpp"
#include "yas/types/boost/fusion_tuple.hpp"
#include "yas/types/boost/fusion_vector.hpp"
#include "yas/types/boost/optional.hpp"
#include "yas/types/boost/string_view.hpp"
#include "yas/types/boost/tuple.hpp"
#include "yas/types/boost/unordered_map.hpp"
#include "yas/types/boost/unordered_multimap.hpp"
#include "yas/types/boost/unordered_multiset.hpp"
#include "yas/types/boost/unordered_set.hpp"
#include "yas/types/boost/variant.hpp"
#include "yas/types/concepts/array.hpp"
#include "yas/types/concepts/const_sized_array.hpp"
#include "yas/types/concepts/forward_list.hpp"
#include "yas/types/concepts/fusion_seq.hpp"
#include "yas/types/concepts/keyval.hpp"
#include "yas/types/concepts/list.hpp"
#include "yas/types/concepts/optional.hpp"
#include "yas/types/concepts/set.hpp"
#include "yas/types/std/array.hpp"
#include "yas/types/std/bitset.hpp"
#include "yas/types/std/chrono.hpp"
#include "yas/types/std/complex.hpp"
#include "yas/types/std/deque.hpp"
#include "yas/types/std/forward_list.hpp"
#include "yas/types/std/list.hpp"
#include "yas/types/std/map.hpp"
#include "yas/types/std/multimap.hpp"
#include "yas/types/std/multiset.hpp"
#include "yas/types/std/optional.hpp"
#include "yas/types/std/pair.hpp"
#include "yas/types/std/set.hpp"
#include "yas/types/std/string.hpp"
#include "yas/types/std/string_view.hpp"
#include "yas/types/std/tuple.hpp"
#include "yas/types/std/u16string.hpp"
#include "yas/types/std/unordered_map.hpp"
#include "yas/types/std/unordered_multimap.hpp"
#include "yas/types/std/unordered_multiset.hpp"
#include "yas/types/std/unordered_set.hpp"
#include "yas/types/std/variant.hpp"
#include "yas/types/std/vector.hpp"
#include "yas/types/std/wstring.hpp"
#include "yas/types/utility/asis.hpp"
#include "yas/types/utility/autoarray.hpp"
#include "yas/types/utility/buffer.hpp"
#include "yas/types/utility/enum.hpp"
#include "yas/types/utility/fundamental.hpp"
#include "yas/types/utility/init.hpp"
#include "yas/types/utility/object.hpp"
#include "yas/types/utility/usertype.hpp"
#include "yas/types/utility/value.hpp"
#include "yas/version.hpp"