Crates.io | zeptohttpc |
lib.rs | zeptohttpc |
version | |
source | src |
created_at | 2020-02-01 17:09:40.34341 |
updated_at | 2024-11-25 10:26:36.129839 |
description | minimal HTTP client using http and httparse crates |
homepage | |
repository | https://github.com/adamreichold/zeptohttpc |
max_upload_size | |
id | 203973 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This crate aims to be the smallest possible yet practically useful HTTP client built on top of the http
and httparse
crates.
encoding_rs
: Support for bodies in various character sets using the encoding_rs
crate.flate2
: Support for compressed bodies using the flate2
crate.json
: Support for JSON bodies using the serde
and serde_json
crates.tls-webpki-roots
: Support for HTTPS connections using the rustls
crate with roots provided by the webpki-roots
crate.tls-native-roots
: Support for HTTPS connections using the rustls
crate with roots provided by the rustls-native-certs
crate.rustls
: Support for HTTPS connections using the rustls
crate without a default set of roots.native-tls
: Support HTTPS connections using the native-tls
crate.Licensed under
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.