axi-uartlite 0.1.1

LogiCORE AXI UART Lite v2.0 driver
Documentation
all: check build embedded clippy check-fmt docs

clippy:
  cargo clippy -- -D warnings

fmt:
  cargo fmt --all

check-fmt:
  cargo fmt --all -- --check

check:
  cargo check

embedded:
  cargo build --target thumbv7em-none-eabihf

test:
  cargo nextest r
  cargo test --doc

build:
  cargo build

docs:
  RUSTDOCFLAGS="--cfg docsrs -Z unstable-options --generate-link-to-definition" cargo +nightly doc --no-deps

docs-html:
  RUSTDOCFLAGS="--cfg docsrs -Z unstable-options --generate-link-to-definition" cargo +nightly doc --open --no-deps

coverage:
  cargo llvm-cov nextest

coverage-html:
  cargo llvm-cov nextest --html --open