url_parser 0.1.1

URL Parser is a Rust parser developed to parse URLs into structured components such as scheme, domain, path, query and fragment.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: build run test fmt clippy


build:
cargo build

run:
cargo run -- parse http://example.com/products/electronics?query=1#reviews

test:
cargo test

fmt:
cargo fmt --all

clippy:
cargo clippy --all -- -D warnings

all: fmt clippy build test