rusk-wallet 0.3.0

A library providing functionalities to create wallets compatible with Dusk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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}'

build: ## Build the wallet
	cargo b --release

install: build ## Install the wallet
	cargo install --path .

clippy: 
	cargo clippy --all-features --release -- -D warnings

test: ## Run wallet tests
	@../scripts/run-rusk-wallet-tests.sh

.PHONY: build clippy test help install