ethnum-macros 1.0.0

256-bit integer literals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# `ethnum-macros`

This crate provides procedural macros for compile-time 256-bit integer literals.

```rust
assert_eq!(ethnum::int!("42") == 42);
```

## Usage

This is typically not used directly, but instead included with `ethnum`:

```toml
[dependencies]
ethnum = { version = "*", features = ["macros"] }
```