curl-parser 0.3.1

Convert curl command to a ParsedRequest (could be further converted to reqwest::RequestBuilder)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:
	@BUILD_ICONS=1 cargo build

test:
	@cargo nextest run --all-features

release:
	@cargo release tag --execute
	@git cliff -o CHANGELOG.md
	@git commit -a -n -m "Update CHANGELOG.md" || true
	@git push origin master
	@cargo release push --execute

.PHONY: build test release