[go: up one dir, main page]

heapless 0.5.3

`static` friendly data structures that don't require dynamic memory allocation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -euo pipefail

main() {
    IFS='
'
    for t in $(rustc --print target-list); do
        rustc +nightly --print cfg --target $t | grep 'target_has_atomic=' >/dev/null || echo $t
    done

}

main