http_file_parser 0.1.1

A Rust-based parser for .http files, parsing HTTP request data using Pest and making parsed requests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "http_file_parser"
version = "0.1.1"
authors = ["Illia Tsymbal <illia.tsymbal@ukma.edu.ua>"]
description = "A Rust-based parser for .http files, parsing HTTP request data using Pest and making parsed requests."
edition = "2021"
license = "MIT"
readme = "README.md"

[dependencies]
pest = "2.1"
pest_derive = "2.1"
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
thiserror = "2.0.3"
anyhow = "1.0"