qcell 0.5.4

Statically-checked alternatives to RefCell and RwLock
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# You can't have 'std' without 'alloc', since 'std' depends on it
for a in '' 'alloc,' 'std,alloc,'; do
    # These two affect independent sections of code so can be tested
    # together
    for b in '' 'generativity,exclusion-set,'; do
        all="$a$b"
        case "$all" in
            *exclusion-set*) MSRV=1.65;;
            *) MSRV=1.60;;
        esac
        echo "$MSRV ${all%,}"
    done
done