attohttpc 0.4.1

Small and lightweight HTTP client
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "attohttpc"
version = "0.4.1"
authors = ["Simon Bernier St-Pierre <git@sbstp.ca>"]
description = "Small and lightweight HTTP client"
homepage = "https://github.com/sbstp/attohttpc"
documentation = "https://docs.rs/attohttpc"
readme = "README.md"
keywords = ["http", "client", "tls"]
license = "MPL-2.0"
repository = "https://github.com/sbstp/attohttpc"
[package.metadata.docs.rs]
all-features = true

[[example]]
name = "cat"
path = "examples/cat.rs"
required-features = ["default"]

[[example]]
name = "imdb"
path = "examples/imdb.rs"
required-features = ["tls"]

[[example]]
name = "nhlapi"
path = "examples/nhlapi.rs"
required-features = ["tls"]

[[example]]
name = "post_json"
path = "examples/post_json.rs"
required-features = ["json"]

[[example]]
name = "post"
path = "examples/post.rs"
required-features = ["tls"]
[dependencies.encoding_rs]
version = "0.8"
optional = true

[dependencies.http]
version = "0.1"

[dependencies.libflate]
version = "0.1"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.native-tls]
version = "0.2"
optional = true

[dependencies.serde]
version = "1"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.url]
version = "1"
[dev-dependencies.env_logger]
version = "0.5"

[features]
charsets = ["encoding_rs"]
compress = ["libflate"]
default = ["compress", "tls"]
json = ["serde", "serde_json"]
tls = ["native-tls"]