[package]
edition = "2024"
rust-version = "1.85"
name = "ecrust-ec"
version = "0.1.1"
authors = [
"Gustavo Banegas <gustavo.souza-banegas@inria.fr>",
"Martin Azon <martin.azon-y-trell@inria.fr>",
"Sam Frengley <samuel.frengley@inria.fr>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Elliptic-curve abstractions and point arithmetic for the ecrust ecosystem."
homepage = "https://github.com/rustnumb/ecrust"
documentation = "https://docs.rs/ecrust-ec"
readme = "README.md"
keywords = [
"cryptography",
"elliptic-curve",
"finite-field",
"isogeny",
"rust",
]
license = "Apache-2.0"
repository = "https://github.com/rustnumb/ecrust"
resolver = "2"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex-header.html",
]
[lib]
name = "ec"
path = "src/lib.rs"
[[example]]
name = "ec_demo"
path = "examples/ec_demo.rs"
[[test]]
name = "curve_edwards_test"
path = "tests/curve_edwards_test.rs"
[[test]]
name = "curve_montgomery_tests"
path = "tests/curve_montgomery_tests.rs"
[[test]]
name = "curve_weierstrass_test"
path = "tests/curve_weierstrass_test.rs"
[[test]]
name = "curves_weierstrass_test"
path = "tests/curves_weierstrass_test.rs"
[[test]]
name = "field_adapter"
path = "tests/field_adapter.rs"
[[test]]
name = "hessian_tests"
path = "tests/hessian_tests.rs"
[[test]]
name = "jacobi_example_instantiation"
path = "tests/jacobi_example_instantiation.rs"
[[test]]
name = "jacobi_intersection_vectors"
path = "tests/jacobi_intersection_vectors.rs"
[[test]]
name = "jacobi_quartic_vectors"
path = "tests/jacobi_quartic_vectors.rs"
[[test]]
name = "jacobi_tests"
path = "tests/jacobi_tests.rs"
[[test]]
name = "point_edwards_test"
path = "tests/point_edwards_test.rs"
[[test]]
name = "point_montgomery_tests"
path = "tests/point_montgomery_tests.rs"
[[test]]
name = "point_tests"
path = "tests/point_tests.rs"
[[test]]
name = "point_weierstrass_tests"
path = "tests/point_weierstrass_tests.rs"
[dependencies.crypto-bigint]
version = "0.7.3"
[dependencies.fp]
version = "0.1.1"
package = "ecrust-fp"
[dependencies.rand]
version = "0.10.1"
[dependencies.subtle]
version = "2.6"