Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .github/workflows/website-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
-DSOURCEMETA_CORE_URITEMPLATE:BOOL=OFF
-DSOURCEMETA_CORE_JSON:BOOL=OFF
-DSOURCEMETA_CORE_JSONL:BOOL=OFF
-DSOURCEMETA_CORE_JSONSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_JSONPOINTER:BOOL=OFF
-DSOURCEMETA_CORE_YAML:BOOL=OFF
-DSOURCEMETA_CORE_JSONRPC:BOOL=OFF
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
-DSOURCEMETA_CORE_URITEMPLATE:BOOL=OFF
-DSOURCEMETA_CORE_JSON:BOOL=OFF
-DSOURCEMETA_CORE_JSONL:BOOL=OFF
-DSOURCEMETA_CORE_JSONSCHEMA:BOOL=OFF
-DSOURCEMETA_CORE_JSONPOINTER:BOOL=OFF
-DSOURCEMETA_CORE_YAML:BOOL=OFF
-DSOURCEMETA_CORE_JSONRPC:BOOL=OFF
Expand Down
9 changes: 0 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ option(SOURCEMETA_CORE_EMAIL "Build the Sourcemeta Core Email library" ON)
option(SOURCEMETA_CORE_URI "Build the Sourcemeta Core URI library" ON)
option(SOURCEMETA_CORE_URITEMPLATE "Build the Sourcemeta Core URI Template library" ON)
option(SOURCEMETA_CORE_JSON "Build the Sourcemeta Core JSON library" ON)
option(SOURCEMETA_CORE_JSONSCHEMA "Build the Sourcemeta Core JSON Schema library" ON)
option(SOURCEMETA_CORE_JSONPOINTER "Build the Sourcemeta Core JSON Pointer library" ON)
option(SOURCEMETA_CORE_JSONL "Build the Sourcemeta Core JSONL library" ON)
option(SOURCEMETA_CORE_YAML "Build the Sourcemeta Core YAML library" ON)
Expand Down Expand Up @@ -146,10 +145,6 @@ if(SOURCEMETA_CORE_JSONPOINTER)
add_subdirectory(src/core/jsonpointer)
endif()

if(SOURCEMETA_CORE_JSONSCHEMA)
add_subdirectory(src/core/jsonschema)
endif()

if(SOURCEMETA_CORE_GZIP)
find_package(LibDeflate REQUIRED)
find_package(ZLIB REQUIRED)
Expand Down Expand Up @@ -284,10 +279,6 @@ if(SOURCEMETA_CORE_TESTS)
add_subdirectory(test/jsonpointer)
endif()

if(SOURCEMETA_CORE_JSONSCHEMA)
add_subdirectory(test/jsonschema)
endif()

if(SOURCEMETA_CORE_GZIP)
add_subdirectory(test/gzip)
endif()
Expand Down
11 changes: 0 additions & 11 deletions DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,6 @@ jsontestsuite https://github.com/nst/JSONTestSuite d64aefb55228d9584d3e5b2433f72
yaml-test-suite https://github.com/yaml/yaml-test-suite data-2022-01-17
cmark-gfm https://github.com/github/cmark-gfm 587a12bb54d95ac37241377e6ddc93ea0e45439b
zlib https://github.com/madler/zlib v1.3.2
jsonschema-2020-12 https://github.com/json-schema-org/json-schema-spec 769daad75a9553562333a8937a187741cb708c72
jsonschema-2019-09 https://github.com/json-schema-org/json-schema-spec 41014ea723120ce70b314d72f863c6929d9f3cfd
jsonschema-draft7 https://github.com/json-schema-org/json-schema-spec 567f768506aaa33a38e552c85bf0586029ef1b32
jsonschema-draft6 https://github.com/json-schema-org/json-schema-spec 59ed5f6fc6f6386e23ca51d7f31d7fe9cf696713
jsonschema-draft4 https://github.com/json-schema-org/json-schema-spec 955d185db846cfca84269d9d711b10f4f3353d38
jsonschema-draft3 https://github.com/json-schema-org/json-schema-spec 89912ad69fe15e006e8336a59e93bf7a1e46fa54
jsonschema-draft2 https://github.com/json-schema-org/json-schema-spec 707f65070d09fe5baa1315bce4d31a66ff124171
jsonschema-draft1 https://github.com/json-schema-org/json-schema-spec 2072feec9fc7a7ff0b2bb5b02c2d6742c554cc4a
jsonschema-draft0 https://github.com/json-schema-org/json-schema-spec 7ea575aef8d5c0183acbe6ff65b4c98ee9c236ec
openapi https://github.com/OAI/OpenAPI-Specification 74906beddddab9e555337031b2a8d8e9338c4972
referencing-suite https://github.com/python-jsonschema/referencing-suite 61c4cc202b1e96ed5adcaf4842a595f68d659212
uritemplate-test https://github.com/uri-templates/uritemplate-test 1eb27ab4462b9e5819dc47db99044f5fd1fa9bc7
pyca-cryptography https://github.com/pyca/cryptography c4935a7021af37c38e0684b0546c1b4378518342
pcre2 https://github.com/PCRE2Project/pcre2 pcre2-10.47
Expand Down
9 changes: 0 additions & 9 deletions benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ if(SOURCEMETA_CORE_JSONPOINTER)
list(APPEND BENCHMARK_SOURCES jsonpointer.cc)
endif()

if(SOURCEMETA_CORE_JSONSCHEMA)
list(APPEND BENCHMARK_SOURCES jsonschema.cc)
endif()

if(SOURCEMETA_CORE_URITEMPLATE)
list(APPEND BENCHMARK_SOURCES uritemplate.cc)
endif()
Expand Down Expand Up @@ -53,11 +49,6 @@ if(BENCHMARK_SOURCES)
PRIVATE sourcemeta::core::jsonpointer)
endif()

if(SOURCEMETA_CORE_JSONSCHEMA)
target_link_libraries(sourcemeta_core_benchmark
PRIVATE sourcemeta::core::jsonschema)
endif()

if(SOURCEMETA_CORE_URITEMPLATE)
target_link_libraries(sourcemeta_core_benchmark
PRIVATE sourcemeta::core::uritemplate)
Expand Down
10,128 changes: 0 additions & 10,128 deletions benchmark/files/2019_09_krakend.json

This file was deleted.

4,484 changes: 0 additions & 4,484 deletions benchmark/files/2019_09_omc_json_v2.json

This file was deleted.

Loading
Loading