static_assert_generic 0.1.2

Static asserts involving const and type generics
Documentation
1
2
3
4
5
6
7
8
9
10
11
This crate has been made redundant as a result of the release of Rust 1.79, that added inline `const` expressions:
    
```
fn foo<const N: usize>() {
    const { assert!(N > 30); }
}
```

Other versions have not been yanked since they still do work as intended.

License: 0BSD