leetrs 1.0.2

A command-line tool to interact with LeetCode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Project name (change if needed)
APP_NAME := leetrs

# Output directory
BIN_DIR := custom-bin

build:
	cargo build --release
	cp target/release/$(APP_NAME) ~/$(BIN_DIR)/

clean:
	cargo clean
run:
	cargo run

.PHONY: build clean run