-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.66 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "http-request"
version = "8.38.4"
edition = "2021"
authors = ["ltpp-universe <[email protected]>"]
license = "MIT"
description = """http-request is a lightweight, efficient library for building, sending, and handling HTTP/HTTPS requests in Rust applications. It provides a simple and intuitive API, allowing developers to easily interact with web services, whether they use the "HTTP" or "HTTPS" protocol. The library supports various HTTP methods, custom headers, request bodies, timeout, automatic handling of redirects (including detecting redirect loops), and enhanced response body decoding (both automatic and manual), enabling fast and secure communication. Whether working with secure "HTTPS" connections or standard "HTTP" requests, the library is optimized for performance, minimal resource usage, and easy integration into Rust projects."""
keywords = ["http", "request", "response", "tcp", "redirect"]
repository = "https://github.com/ltpp-universe/http-request.git"
categories = ["network-programming", "web-programming"]
exclude = [
"target",
"Cargo.lock",
"sh",
".github"
]
[dependencies]
brotli = "7.0.0"
flate2 = "1.0.35"
hex = "0.4.3"
http-compress = "2.2.3"
http-type = "2.34.2"
rustls = "0.23.23"
serde = { version = "1.0.217", features = ["derive"] }
serde-xml-rs = "0.6.0"
serde_json = "1.0.138"
serde_urlencoded = "0.7.1"
url = "2.5.4"
urlencoding = "2.1.3"
webpki-roots = "0.26.8"
[dev-dependencies]
color-output = "6.1.8"
std-macro-extensions = "0.21.1"
[profile.dev]
incremental = true
opt-level = 3
lto = true
panic = "unwind"
debug = false
[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false