#heapless #collection #arrayvec #fallible #traits #array #data

no-std collectable

Fallible, no_std-friendly collection traits

2 releases

0.0.2 May 24, 2020
0.0.1 May 24, 2020

#1562 in Data structures

Download history 6003/week @ 2024-11-17 4745/week @ 2024-11-24 6035/week @ 2024-12-01 6583/week @ 2024-12-08 5346/week @ 2024-12-15 2003/week @ 2024-12-22 2666/week @ 2024-12-29 5644/week @ 2025-01-05 6229/week @ 2025-01-12 6133/week @ 2025-01-19 5699/week @ 2025-01-26 6961/week @ 2025-02-02 7834/week @ 2025-02-09 6582/week @ 2025-02-16 7216/week @ 2025-02-23 6022/week @ 2025-03-02

27,944 downloads per month
Used in typed-store

Apache-2.0 OR MIT

7KB
87 lines

RustCrypto: Utilities

Project Chat dependency status Apache2/MIT licensed

This repository contains various utility crates used in the RustCrypto project.

Crates

Name crates.io Docs Description
blobby crates.io Documentation Decoder of the simple de-duplicated binary blob storage format
block-buffer crates.io Documentation Fixed size buffer for block processing of data
block‑padding crates.io Documentation Padding and unpadding of messages divided into blocks
cmov crates.io Documentation Conditional move intrinsics
collectable crates.io Documentation Fallible, no_std-friendly collection traits
cpufeatures crates.io Documentation Lightweight and efficient alternative to the is_x86_feature_detected! macro
dbl crates.io Documentation Double operation in Galois Field (GF)
hex-literal crates.io Documentation A macro for converting hexadecimal strings to a byte array at compile time
inout crates.io Documentation Custom reference types for code generic over in-place and buffer-to-buffer modes of operation.
opaque-debug crates.io Documentation Macro for opaque Debug trait implementation
wycheproof2blb
zeroize crates.io Documentation Securely zero memory while avoiding compiler optimizations

License

All crates licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

This crate provides a set of traits that can be used to abstract over various collection types. In particular, it supports traits for fallible operations (such as TryExtend) which are useful for supporting fixed-capacity containers, such as heapless::Vec or tinyvec::Array.

No runtime deps

Features