vcpkg/ports/seal/vcpkg.json
Wei Dai 0a77b03b49
[seal] Updated seal to version 4.1.1. (#28727)
* Updated seal to version 4.1.0.

* Fixed versioning.

* Updated seal to 4.1.1.

* Fixed versioning.

* Update seal.json

Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
2023-01-12 22:12:45 -08:00

52 lines
1.1 KiB
JSON

{
"name": "seal",
"version": "4.1.1",
"description": "Microsoft SEAL is an easy-to-use and powerful homomorphic encryption library.",
"homepage": "https://github.com/microsoft/SEAL",
"license": "MIT",
"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"
]
}
}
}