Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWOLAND committed Aug 15, 2024
1 parent 62ebb3c commit 4659831
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/g1.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
//! This module provides an implementation of the $\mathbb{G}_1$ group of BLS12-381.
#[cfg(not(target_os = "wasi"))]
use alloc::{vec, vec::Vec};
#[cfg(target_os = "wasi")]
use core::alloc::{vec, vec::Vec};

use cfg_if::cfg_if;
use core::borrow::Borrow;
use core::fmt;
Expand Down

0 comments on commit 4659831

Please sign in to comment.