We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b33b9a commit 933f562Copy full SHA for 933f562
2 files changed
mithril-client-wasm/Cargo.toml
@@ -25,6 +25,7 @@ crate-type = ["cdylib"]
25
default = ["rustls"]
26
rustls = ["mithril-client/rustls"]
27
test-node = []
28
+future_snark = ["mithril-client/future_snark"]
29
30
[dependencies]
31
anyhow = { workspace = true }
mithril-stm/src/circuits/mod.rs
@@ -7,6 +7,7 @@
7
8
pub mod halo2;
9
pub mod halo2_ivc;
10
+#[cfg(not(target_family = "wasm"))]
11
pub mod trusted_setup;
12
13
#[cfg(test)]
@@ -17,6 +18,7 @@ pub(crate) use halo2::witness::{
17
18
};
19
20
/// Constant holding the current path of the cached values related to the circuits
21
22
const MITHRIL_CIRCUIT_CACHE_FOLDER: &str = "mithril-circuit";
23
24
#[cfg(all(
0 commit comments