diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-02-21 13:43:46 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-03-05 16:04:14 +0200 |
| commit | f0a9a58e069cf8f6f2de5dbd3cd48a1420fc21a1 (patch) | |
| tree | d154f801ce3cb43b6edf32c27e769f10f6e5d3b8 /guests/evaluate_polynomial/Cargo.toml | |
| parent | 4eea9faf022b04a00d7fa0c76dc749faa33e9b04 (diff) | |
| download | zkVMs-benchmarks-evaluate_polynomial.tar zkVMs-benchmarks-evaluate_polynomial.tar.gz zkVMs-benchmarks-evaluate_polynomial.zip | |
feat(guests): Add polynomial evaluation programevaluate_polynomial
Adapted from
https://github.com/metacraft-labs/dvt-circuits/blob/master/crates/bls_utils/src/bls.rs#L26
Co-authored-by: Marto <martindobrev0@gmail.com>
Diffstat (limited to 'guests/evaluate_polynomial/Cargo.toml')
| -rw-r--r-- | guests/evaluate_polynomial/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
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 = [] |
