-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (29 loc) · 1018 Bytes
/
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
[package]
name = "http-range-client"
version = "0.8.0"
edition = "2018"
authors = ["Pirmin Kalberer <[email protected]>"]
description = "HTTP client for HTTP Range requests with a buffer optimized for sequential requests."
homepage = "https://github.com/pka/http-range-client"
repository = "https://github.com/pka/http-range-client"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["http", "reader", "buffer"]
[features]
default = ["reqwest-async", "reqwest-sync"]
reqwest-async = ["reqwest"]
reqwest-sync = ["reqwest/blocking"]
ureq-sync = ["ureq"]
[dependencies]
async-trait = "0.1.51"
byteorder = "1.4.2"
bytes = "1.0.1"
read-logger = "0.2.0"
reqwest = { version = "0.12.5", default-features = false, features = ["default-tls"], optional = true }
thiserror = "1.0"
ureq = { version = "2.7.1", optional = true }
[dev-dependencies]
env_logger = "0.11.5"
tokio = { version = "1.0.2", default-features = false, features = ["rt-multi-thread", "macros"] }
[package.metadata.docs.rs]
all-features = true