mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 03:59:22 +00:00
6efc313d76
This includes all published crates.
29 lines
1 KiB
TOML
29 lines
1 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"]
|
|
|
|
[dependencies]
|
|
# Deprecated here means to enable deprecated warnings, not to restore deprecated APIs
|
|
hyper = { version = "0.14", default-features = false, features = ["http1", "tcp", "client", "runtime", "backports", "deprecated"] }
|
|
tokio = { version = "1", default-features = false }
|
|
|
|
hyper-rustls = { version = "0.24", default-features = false, features = ["http1", "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"]
|