[package] name = "ark-vesta" version.workspace = true authors = [ "Ying Tong Lai", "Daira Hopwood", "O(1) Labs", "arkworks contributors" ] description = "The Vesta prime-order elliptic curve" homepage.workspace = true repository.workspace = true documentation = "https://docs.rs/ark-vesta/" keywords.workspace = true categories.workspace = true include.workspace = true license.workspace = true edition.workspace = true [dependencies] ark-ff = { workspace = true } ark-ec = { workspace = true } ark-r1cs-std = { workspace = true, optional = true } ark-std = { workspace = true } ark-pallas = { workspace = true, features = [ "scalar_field", "base_field" ] } [dev-dependencies] ark-relations = { workspace = true } ark-serialize = { workspace = true } ark-algebra-test-templates = { workspace = true } ark-algebra-bench-templates = { workspace = true } ark-curve-constraint-tests = { path = "../curve-constraint-tests" } [features] default = [] std = [ "ark-std/std", "ark-ff/std", "ark-ec/std" ] r1cs = [ "ark-r1cs-std" ] [[bench]] name = "vesta" path = "benches/vesta.rs" harness = false