bitvec 0.10.2

A crate for manipulating memory, bit by bit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
checkout:
	cargo check
	cargo doc --features testing --document-private-items
	cargo build
	cargo build --example sieve
	cargo build --example tour
	cargo test --features testing
	cargo package --allow-dirty

dev:
	# cargo check
	cargo test --no-default-features --features testing
	cargo doc --features testing --document-private-items

ci:
	watchexec -- just dev