rmodbus 0.7.2

Fast and platform-independent Modbus server framework
Documentation
VERSION=$(shell grep ^version Cargo.toml|cut -d\" -f2)

all: test

test: test-std test-nostd

test-std:
	cargo test --all-features -- --test-threads=1 --nocapture

test-nostd:
	cargo test --no-default-features -- --test-threads=1 --nocapture

tag:
	git tag -a v${VERSION} -m v${VERSION}
	git push origin --tags

doc:
	cargo doc

pub: doc test publish-cargo-crate

publish-cargo-crate:
	cargo publish