/ algorithms / cuda / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "alphavm-algorithms-cuda"
 3  version = "4.4.0"
 4  authors = [ "The Aleo Team <hello@aleo.org>" ]
 5  description = "Cuda optimizations for a decentralized virtual machine"
 6  homepage = "https://aleo.org"
 7  repository = "https://github.com/ProvableHQ/snarkVM"
 8  keywords = [
 9    "aleo",
10    "cryptography",
11    "blockchain",
12    "decentralized",
13    "zero-knowledge"
14  ]
15  categories = [
16    "compilers",
17    "cryptography",
18    "mathematics",
19    "wasm",
20    "web-programming"
21  ]
22  include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
23  license = "Apache-2.0"
24  edition = "2021"
25  
26  [features]
27  default = [ ]
28  portable = [ "blst/portable" ]
29  quiet = [ ]
30  
31  [dependencies.blst]
32  version = "0.3.11"
33  features = [ ]
34  
35  [dependencies.sppark]
36  version = "0.1.5"
37  
38  [build-dependencies.cc]
39  version = "^1.0.83"
40  
41  [build-dependencies.which]
42  version = "^8.0"