mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:19:00 +08:00
6cfec8f9f0
<!-- If your PR fixes issues, please note that here by adding "Fixes #NNNNNN." for each fixed issue on separate lines. --> - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
74 lines
1.5 KiB
JSON
74 lines
1.5 KiB
JSON
{
|
|
"name": "rocksdb",
|
|
"version": "9.1.0",
|
|
"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": [
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"bzip2": {
|
|
"description": "build with bzip2",
|
|
"dependencies": [
|
|
"bzip2"
|
|
]
|
|
},
|
|
"liburing": {
|
|
"description": "build with liburing",
|
|
"supports": "linux",
|
|
"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"
|
|
]
|
|
}
|
|
}
|
|
}
|