vcpkg/ports/rocksdb/vcpkg.json
Yury Bura 4c397835c4
[rocksdb] update to v8.3.2, add/rework features (#29093)
* add more options and remove unused CMake variables

* add version

* [rocksdb] fix liburing option

* update version

* [rocksdb] disable debug runtime for Release configuration (Windows only)

* update version

* [rocksdb] remove processor-specific features

* [rocksdb] update v7.10.2

* add version

* [rocksdb] update to v8.0.0

* add version

* add version

* modify version

* add version

* [rocksdb] update to v8.3.2, build shared library, update ci.basline.txt

* update version

* [rocksdb] PORTABLE option has been modified in v8.3, it should be equal to 1

* clean up ci.baseline.txt

* =update version

* revert "clean up ci.baseline.txt"

* remove unnecessary lines

* update version

* update ci.baseline.txt

* update version

* [rocksdb] remove JeMalloc

* update version
2023-07-07 09:08:38 -07:00

74 lines
1.5 KiB
JSON

{
"name": "rocksdb",
"version": "8.3.2",
"description": "A library that provides an embeddable, persistent key-value store for fast storage",
"homepage": "https://github.com/facebook/rocksdb",
"license": "GPL-2.0-only OR Apache-2.0",
"supports": "!uwp & !(arm & !arm64 & android)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"liburing",
"zlib"
],
"features": {
"bzip2": {
"description": "build with bzip2",
"dependencies": [
"bzip2"
]
},
"liburing": {
"description": "build with liburing",
"dependencies": [
{
"name": "liburing",
"platform": "linux"
}
]
},
"lz4": {
"description": "build with lz4",
"dependencies": [
"lz4"
]
},
"numa": {
"description": "build with NUMA policy support",
"supports": "linux"
},
"snappy": {
"description": "build with SNAPPY",
"dependencies": [
"snappy"
]
},
"tbb": {
"description": "build with Threading Building Blocks (TBB)",
"dependencies": [
"tbb"
]
},
"zlib": {
"description": "build with zlib",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "build with zstd",
"dependencies": [
"zstd"
]
}
}
}