aces 0.0.13

Algebra of Cause-Effect Structures
Documentation
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

CRATES="log fern yaml-rust regex lazy_static rand string_cache bit-vec varisat"

for crate in $CRATES ; do
    echo -n "$crate = "
    grep -m 1 "$crate = " Cargo.toml | cut -z -d\" -f2
    echo -n " -> "
    cargo search --limit 1 $crate | head -1 | awk '{print $3}'
done