[package]
edition = "2024"
rust-version = "1.85"
name = "ecrust-fp"
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 = "Finite field arithmetic for the ecrust ecosystem."
homepage = "https://github.com/rustnumb/ecrust"
documentation = "https://docs.rs/ecrust-fp"
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 = "fp"
path = "src/lib.rs"
[[example]]
name = "fp_demo"
path = "examples/fp_demo.rs"
[[test]]
name = "f2_ext_tests"
path = "tests/f2_ext_tests.rs"
[[test]]
name = "f2_tests"
path = "tests/f2_tests.rs"
[[test]]
name = "fp_ext_tests"
path = "tests/fp_ext_tests.rs"
[[test]]
name = "fp_tests"
path = "tests/fp_tests.rs"
[dependencies.crypto-bigint]
version = "0.7.3"
features = ["subtle"]
[dependencies.rand]
version = "0.10.1"
[dependencies.subtle]
version = "2.6"
[dev-dependencies.rand]
version = "0.10.1"