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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ports/simdjson/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO simdjson/simdjson
REF 8a247f13216aa5a0b149ebb5e352d26eb13f309a # v3.1.2
REF "v${VERSION}"
HEAD_REF master
SHA512 6a7394ccde9c9c5be936e260ba48ebead7447a9d40c110071e0901ff8d70422a7aa8e50321d98ec5b50122948395b89a7d0aa40ed171261bea340bf1c0077927
SHA512 e2a8c3b21b134c96158f8a6f209ea4c9c7bd63205ad967860a99ad24bc607b857f3a952ab84cdf927322ddcc6a549555d32c163751fe4ff2b5776de918685b40
)

vcpkg_check_features(
Expand All @@ -13,6 +13,7 @@ vcpkg_check_features(
threads SIMDJSON_ENABLE_THREADS
INVERTED_FEATURES
deprecated SIMDJSON_DISABLE_DEPRECATED_API
utf8-validation SIMDJSON_SKIPUTF8VALIDATION
)

string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" SIMDJSON_BUILD_STATIC)
Expand Down
8 changes: 6 additions & 2 deletions ports/simdjson/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simdjson",
"version": "3.1.2",
"version": "3.1.5",
"description": "A extremely fast JSON library that can parse gigabytes of JSON per second",
"homepage": "https://simdjson.org/",
"license": "Apache-2.0",
Expand All @@ -17,7 +17,8 @@
"default-features": [
"deprecated",
"exceptions",
"threads"
"threads",
"utf8-validation"
],
"features": {
"deprecated": {
Expand All @@ -28,6 +29,9 @@
},
"threads": {
"description": "Link with thread support"
},
"utf8-validation": {
"description": "Enable UTF8 validation"
}
}
}
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -7265,7 +7265,7 @@
"port-version": 1
},
"simdjson": {
"baseline": "3.1.2",
"baseline": "3.1.5",
"port-version": 0
},
"simdutf": {
Expand Down
5 changes: 5 additions & 0 deletions versions/s-/simdjson.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "6694abe5993ac1fc09466303507bb0eccca53911",
"version": "3.1.5",
"port-version": 0
},
{
"git-tree": "780181f6b18135c5a85f8aeb5e141f81890fb99b",
"version": "3.1.2",
Expand Down