RustCrypto / traits

Collection of cryptography-related traits
590 stars 191 forks source link

aead: use `core::error`; remove `std` feature #1692

Closed tarcieri closed 1 month ago

tarcieri commented 1 month ago

Switches from std::error::Error to core::error::Error which was stabilized in Rust 1.81, which is already the aead crate's current MSRV.

Since this was the only usage of std, also removes the std feature.