vcpkg/ports/seal/vcpkg.json
Wei Dai d93cf33a22
[seal] Fixed cannot find SEAL. (#18596)
* Fixed cannot find seal.

* Updated versioning.
2021-07-01 08:41:40 -07:00

53 lines
1.1 KiB
JSON

{
"name": "seal",
"version-semver": "3.6.6",
"port-version": 1,
"description": "Microsoft SEAL is an easy-to-use and powerful homomorphic encryption library.",
"homepage": "https://github.com/microsoft/SEAL",
"supports": "!windows | (windows & static)",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"ms-gsl",
"zlib",
"zstd"
],
"features": {
"hexl": {
"description": "Use Intel® HEXL for acceleration of low-level kernels.",
"dependencies": [
"hexl"
]
},
"ms-gsl": {
"description": "Use ms-gsl for span view",
"dependencies": [
"ms-gsl"
]
},
"no-throw-tran": {
"description": "Do not throw when operating on transparent ciphertexts"
},
"zlib": {
"description": "Use zlib for compressed serialization",
"dependencies": [
"zlib"
]
},
"zstd": {
"description": "Use zstd for compressed serialization",
"dependencies": [
"zstd"
]
}
}
}