-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
35 lines (31 loc) · 1.01 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
[package]
name = "http_io"
version = "0.3.0"
authors = ["Remi Bernotavicius <remi@abort.cc>"]
edition = "2018"
license = "MIT/Apache-2.0"
repository = "https://github.com/bobbobbio/http_io"
homepage = "https://github.com/bobbobbio/http_io"
description = """
A library with limited dependencies containing an HTTP client and server.
"""
readme = "README.md"
[badges]
travis-ci = { repository = "bobbobbio/http_io" }
[features]
default = ["std", "ssl-native-tls"]
ssl-openssl = ["ssl", "openssl"]
ssl-rustls = ["ssl", "rustls", "webpki-roots", "rustls-pemfile"]
ssl-native-tls = ["ssl", "native-tls"]
std = []
ssl = []
[dependencies]
hashbrown = "0.15"
openssl = { version = "0.10", optional = true }
rustls = { version = "^0.20.8", optional = true }
webpki-roots = { version = "^0.26.0", optional = true }
rustls-pemfile = { version = "^2.0.0", optional = true }
native-tls = { version = "0.2", optional = true }
url = { version = "2.5.3", default-features = false }
[dev-dependencies]
clap = { version = "4.5", features = ["derive"] }