mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
9d3d47fc9f
* hyper-rustls 0.25 This isn't worth it until our dependencies update to rustls 0.22 as well. * hyper-rustls 0.26 and hyper 1.0
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "simple-request"
|
|
version = "0.1.0"
|
|
description = "A simple HTTP(S) request library"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/common/simple-request"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["http", "https", "async", "request", "ssl"]
|
|
edition = "2021"
|
|
rust-version = "1.64"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tower-service = { version = "0.3", default-features = false }
|
|
hyper = { version = "1", default-features = false, features = ["http1", "client"] }
|
|
hyper-util = { version = "0.1", default-features = false, features = ["http1", "client-legacy", "tokio"] }
|
|
http-body-util = { version = "0.1", default-features = false }
|
|
tokio = { version = "1", default-features = false }
|
|
|
|
hyper-rustls = { version = "0.26", default-features = false, features = ["http1", "ring", "rustls-native-certs", "native-tokio"], optional = true }
|
|
|
|
zeroize = { version = "1", optional = true }
|
|
base64ct = { version = "1", features = ["alloc"], optional = true }
|
|
|
|
[features]
|
|
tls = ["hyper-rustls"]
|
|
basic-auth = ["zeroize", "base64ct"]
|
|
default = ["tls"]
|