http_file_parser 0.1.0

A Rust-based parser for .http files, parsing HTTP request data using Pest and making parsed requests.
Documentation
[[bin]]
name = "http_file_parser"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.pest]
version = "2.1"

[dependencies.pest_derive]
version = "2.1"

[dependencies.reqwest]
features = ["blocking", "json"]
version = "0.12.9"

[dependencies.thiserror]
version = "2.0.3"

[lib]
name = "http_file_parser"
path = "src/lib.rs"

[package]
authors = ["Illia Tsymbal <illia.tsymbal@ukma.edu.ua>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "A Rust-based parser for .http files, parsing HTTP request data using Pest and making parsed requests."
edition = "2021"
license = "MIT"
name = "http_file_parser"
readme = "README.md"
version = "0.1.0"

[[test]]
name = "grammar_test"
path = "tests/grammar_test.rs"

[[test]]
name = "parser_test"
path = "tests/parser_test.rs"