From f0a9a58e069cf8f6f2de5dbd3cd48a1420fc21a1 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Fri, 21 Feb 2025 13:43:46 +0200 Subject: feat(guests): Add polynomial evaluation program Adapted from https://github.com/metacraft-labs/dvt-circuits/blob/master/crates/bls_utils/src/bls.rs#L26 Co-authored-by: Marto --- guests/evaluate_polynomial/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 guests/evaluate_polynomial/Cargo.toml (limited to 'guests/evaluate_polynomial/Cargo.toml') diff --git a/guests/evaluate_polynomial/Cargo.toml b/guests/evaluate_polynomial/Cargo.toml new file mode 100644 index 0000000..d235978 --- /dev/null +++ b/guests/evaluate_polynomial/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "evaluate_polynomial" +version = "0.1.0" +edition = "2021" + +[dependencies] +bls12_381 = { git = "https://github.com/sp1-patches/bls12_381", features = ["experimental"] } +guests_macro = { version = "0.1.0", path = "../../guests_macro" } +hex = "0.4" + +[features] +no_std = [] +jolt = [] +nexus = [] +risc0 = [] +sp1 = [] +zkm = [] +zkwasm = [] -- cgit v1.2.3