From f84c0ae6acc0b87360c94106ed14ddb470ed1cb5 Mon Sep 17 00:00:00 2001 From: DETCHART Jonathan <jonathan.detchart@isae.fr> Date: Wed, 6 Nov 2024 10:06:40 +0000 Subject: [PATCH] enable kzg and aplonk by default (dragoon/komodo!172) This MR enables by default `kzg` and `aplonk`. By doing that, both modules should be visible in the doc. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f7d1218f..0c4ecd56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,6 +43,9 @@ kzg = ["dep:ark-poly-commit"] aplonk = ["dep:ark-poly-commit"] fs = [] +[package.metadata.docs.rs] +features = ["kzg", "aplonk"] + [[example]] name = "kzg" required-features = ["kzg"] -- GitLab