]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Vendor import of libcbor 0.10.2
authorEd Maste <emaste@FreeBSD.org>
Thu, 20 Apr 2023 23:17:42 +0000 (19:17 -0400)
committerEd Maste <emaste@FreeBSD.org>
Thu, 20 Apr 2023 23:17:42 +0000 (19:17 -0400)
commit058aa793d837f38f112acc154816397251019319
tree6703990f4d118959eeb50f39c44bc62dbffa4f26
parent5b2defbd2a1aa991bd0a2855eef8e15107572747
Vendor import of libcbor 0.10.2
138 files changed:
.circleci/config.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/bug_report.md [new file with mode: 0644]
.github/PULL_REQUEST_TEMPLATE [new file with mode: 0644]
.github/workflows/fuzz-pr.yml [new file with mode: 0644]
.github/workflows/fuzz.yml
.gitignore
.travis.yml [deleted file]
Bazel.md [new file with mode: 0644]
CHANGELOG.md
CMakeLists.txt
CMakeModules/FindCMocka.cmake
CMakeModules/JoinPaths.cmake [new file with mode: 0644]
CONTRIBUTING.md [new file with mode: 0644]
Doxyfile
README.md
appveyor.yml
clang-format.sh
codecov.yml
doc/source/api.rst
doc/source/api/encoding.rst
doc/source/api/item_reference_counting.rst
doc/source/api/streaming_decoding.rst [moved from doc/source/streaming/decoding.rst with 61% similarity]
doc/source/api/streaming_encoding.rst [new file with mode: 0644]
doc/source/api/type_2.rst
doc/source/api/type_3.rst
doc/source/api/type_4.rst
doc/source/api/type_5.rst
doc/source/api/type_7.rst
doc/source/conf.py
doc/source/getting_started.rst
doc/source/index.rst
doc/source/requirements.txt
doc/source/rfc_conformance.rst
doc/source/streaming.rst [deleted file]
doc/source/streaming/encoding.rst [deleted file]
doc/source/using.rst
examples/CMakeLists.txt
examples/bazel/README.md [new file with mode: 0644]
examples/bazel/WORKSPACE [new file with mode: 0644]
examples/bazel/src/BUILD [new file with mode: 0644]
examples/bazel/src/hello.cc [new file with mode: 0644]
examples/bazel/src/hello.h [new file with mode: 0644]
examples/bazel/src/hello_test.cc [new file with mode: 0644]
examples/bazel/src/main.cc [new file with mode: 0644]
examples/bazel/third_party/BUILD [new file with mode: 0644]
examples/bazel/third_party/libcbor.BUILD [new file with mode: 0644]
examples/bazel/third_party/libcbor/BUILD [new file with mode: 0644]
examples/bazel/third_party/libcbor/cbor/cbor_export.h [new file with mode: 0644]
examples/bazel/third_party/libcbor/cbor/configuration.h [new file with mode: 0644]
examples/cjson2cbor.c
examples/create_items.c
examples/hello.c
examples/readfile.c
examples/sort.c
examples/streaming_array.c [new file with mode: 0644]
examples/streaming_parser.c
misc/update_version.py
oss-fuzz/build.sh
oss-fuzz/cbor_load_fuzzer.cc
release.sh
src/CMakeLists.txt
src/cbor.c
src/cbor.h
src/cbor/arrays.c
src/cbor/arrays.h
src/cbor/bytestrings.c
src/cbor/bytestrings.h
src/cbor/callbacks.c
src/cbor/callbacks.h
src/cbor/common.c
src/cbor/common.h
src/cbor/configuration.h.in
src/cbor/data.h
src/cbor/encoding.c
src/cbor/encoding.h
src/cbor/floats_ctrls.c
src/cbor/floats_ctrls.h
src/cbor/internal/builder_callbacks.c
src/cbor/internal/builder_callbacks.h
src/cbor/internal/encoders.c
src/cbor/internal/encoders.h
src/cbor/internal/loaders.c
src/cbor/internal/loaders.h
src/cbor/internal/memory_utils.c
src/cbor/internal/memory_utils.h
src/cbor/internal/stack.c
src/cbor/internal/stack.h
src/cbor/internal/unicode.c
src/cbor/internal/unicode.h
src/cbor/ints.c
src/cbor/ints.h
src/cbor/maps.c
src/cbor/maps.h
src/cbor/serialization.c
src/cbor/serialization.h
src/cbor/streaming.c
src/cbor/streaming.h
src/cbor/strings.c
src/cbor/strings.h
src/cbor/tags.c
src/cbor/tags.h
src/libcbor.pc.in
test/CMakeLists.txt
test/array_encoders_test.c [moved from test/type_4_encoders_test.c with 60% similarity]
test/array_test.c [new file with mode: 0644]
test/assertions.c
test/assertions.h
test/bad_inputs_test.c
test/bytestring_encoders_test.c [moved from test/type_2_encoders_test.c with 58% similarity]
test/bytestring_test.c [moved from test/type_2_test.c with 79% similarity]
test/callbacks_test.c
test/cbor_serialize_test.c
test/cbor_stream_decode_test.c
test/copy_test.c
test/float_ctrl_encoders_test.c [new file with mode: 0644]
test/float_ctrl_test.c [moved from test/type_7_test.c with 52% similarity]
test/fuzz_test.c
test/map_encoders_test.c [moved from test/type_5_encoders_test.c with 62% similarity]
test/map_test.c [moved from test/type_5_test.c with 61% similarity]
test/memory_allocation_test.c [deleted file]
test/memory_utils_test.c [new file with mode: 0644]
test/negint_encoders_test.c [moved from test/type_1_encoders_test.c with 55% similarity]
test/negint_test.c [moved from test/type_1_test.c with 71% similarity]
test/pretty_printer_test.c
test/stack_over_limit_test.c
test/stream_expectations.c
test/stream_expectations.h
test/string_encoders_test.c [moved from test/type_3_encoders_test.c with 59% similarity]
test/string_test.c [moved from test/type_3_test.c with 72% similarity]
test/tag_encoders_test.c [moved from test/type_6_encoders_test.c with 68% similarity]
test/tag_test.c [moved from test/type_6_test.c with 65% similarity]
test/test_allocator.c [new file with mode: 0644]
test/test_allocator.h [new file with mode: 0644]
test/type_4_test.c [deleted file]
test/type_7_encoders_test.c [deleted file]
test/uint_encoders_test.c [moved from test/type_0_encoders_test.c with 56% similarity]
test/uint_test.c [moved from test/type_0_test.c with 69% similarity]
test/unicode_test.c