dusk-node 1.0.0

An implementation of dusk-blockchain node in pure Rust
Documentation
help: ## Display this help screen
	@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'

test: ## Run Node tests
	@cargo test --release -- --nocapture

binary: ## Build a binary
	@cargo b --release --bin rusk-node

build-bench: ## Build the benchmarks
	@cargo bench --no-run

bench: ## Run the benchmarks
	@cargo bench

debug_with_telemetry: # Build a binary with telemetry enabled. Currently, telemetry is only based on tokio_console
	 cargo --config 'build.rustflags = ["--cfg", "tokio_unstable"]' build --features with_telemetry --bin rusk-node

clean:
	@cargo clean
			
clippy: ## Run clippy
	@cargo clippy --all-features --release -- -D warnings
	@cargo check --benches

doc: ## Run doc gen
	@cargo doc --release

.PHONY: test help binary clean