mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
9 lines
227 B
Rust
9 lines
227 B
Rust
|
|
//! Crate-local prelude (for alloc-dependent features like `Vec`)
|
||
|
|
|
||
|
|
// TODO: switch to alloc::prelude
|
||
|
|
#[cfg(all(feature = "alloc", not(feature = "std")))]
|
||
|
|
pub use alloc::vec::Vec;
|
||
|
|
|
||
|
|
#[cfg(feature = "std")]
|
||
|
|
pub use std::vec::Vec;
|