ecrust-ec 0.1.0

Elliptic curve group operations for the ecrust library
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "ecrust-ec"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Elliptic curve group operations for the ecrust library"
readme = false
license = "Apache-2.0"
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.0"
package = "ecrust-fp"

[dependencies.rand]
version = "0.10.1"

[dependencies.subtle]
version = "2.6"

[dev-dependencies]