h5rio 0.1.0

A simple HDF5 IO library
Documentation
# -*-Makefile-*-

build:
    cargo build

test:
     cargo nextest run

test-macros:
     cargo nextest run -p h5rio_macros

verbose regexp:
     cargo nextest run --no-capture -E "test({{regexp}})"

clean:
    cargo clean

examples:
    cargo run --example array_round_trip
    cargo run --example table_round_trip

test-client:
    #!/usr/bin/env bash
    cp -r examples/client /tmp/
    cd /tmp/client
    cargo run