h5rio 0.3.0

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

build:
    cargo build

test:
    cargo nextest run

test-macros:
    cargo nextest run -p h5rio_macros

test-doc:
    cargo test --doc

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

doc:
    cargo doc --no-deps --open