Make crate no-std

This commit is contained in:
Jack Grigg 2023-12-07 16:00:59 +00:00
parent ea227f86c6
commit fd4d94ef63
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,8 @@
//! [`sapling-crypto`]: https://crates.io/crates/sapling-crypto
//! [`orchard`]: https://crates.io/crates/orchard
#![no_std]
#![deny(unsafe_code)]
#![deny(rustdoc::broken_intra_doc_links)]
mod prf_expand;

View File

@ -1,4 +1,4 @@
use std::marker::PhantomData;
use core::marker::PhantomData;
use blake2b_simd::Params;