mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-06 20:41:14 +00:00
fix: stop forbidding unsafe in tests
This commit is contained in:
parent
d94b0f52dc
commit
c5fb932561
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@
|
||||||
#![warn(future_incompatible)]
|
#![warn(future_incompatible)]
|
||||||
#![deny(missing_docs)] // refuse to compile if documentation is missing
|
#![deny(missing_docs)] // refuse to compile if documentation is missing
|
||||||
|
|
||||||
#![forbid(unsafe_code)]
|
#![cfg_attr(not(test), forbid(unsafe_code))]
|
||||||
|
|
||||||
#[cfg(any(feature = "std", test))]
|
#[cfg(any(feature = "std", test))]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue