docs.rs failed to build exint-0.1.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
exint-0.1.4
Exint - Exotic Integer Types
A no_std Rust library providing stack-allocated generic integers.
Features
- Generic integer types
- Signed integers via
int<N> - Unsigned integers via
uint<N> - Small type aliases (eg.
u24,u40,u80)
- Signed integers via
- Usable in
no-stdenvironments - Usable in
constcontexts - Zero dependencies
Basic example
use u24;
Literals
exint provides a simple procedural macro to simplify working with literal values.
The above example can be re-written as:
use u24;
Use the exint::uint_strict! macro to avoid converting the core integer types.
use uint;
Security
This crate is not intended for cryptographic use. Consider using crypto-bigint if you need an integer type suitable for cryptographic applications.