[package]
edition = "2024"
name = "maestro-http"
version = "0.1.0"
authors = ["Otabek"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Maestro HTTP - simple async PHP-style HTTP client in Rust"
readme = "README.md"
keywords = [
"http",
"async",
"client",
"maestro",
"php-style",
]
categories = [
"web-programming",
"network-programming",
]
license = "MIT"
repository = "https://github.com/Famous-Coder36/maestro-http"
[lib]
name = "maestro_http"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]